LEADTOOLS Windows Forms (Leadtools.WinForms.CommonDialogs.File assembly) Send comments on this topic. | Back to Introduction - All Topics | Help Version 17.0.3.30
UseGdiPlus Property
See Also 
Leadtools.WinForms.CommonDialogs.File Namespace > RasterOpenDialog Class : UseGdiPlus Property



Gets or sets a value that indicates whether to use GDI+ paint engine when drawing the thumbnails of images.

Syntax

Visual Basic (Declaration) 
Public Property UseGdiPlus As Boolean
Visual Basic (Usage)Copy Code
Dim instance As RasterOpenDialog
Dim value As Boolean
 
instance.UseGdiPlus = value
 
value = instance.UseGdiPlus
C# 
public bool UseGdiPlus {get; set;}
C++/CLI 
public:
property bool UseGdiPlus {
   bool get();
   void set (    bool value);
}

Property Value

true if the GDI+ paint engine is used when drawing the thumbnails of images, otherwise; false. Default value is false.

Remarks

If the value of this property is true, then the File Open dialog will use GDI+ engine (RasterPaintEngine.GdiPlus) when drawing the thumbnails in the preview window. Otherwise, the the GDI engine (RasterPaintEngine.Gdi) will be used.

Requirements

Target Platforms: Microsoft .NET Framework 2.0, Windows 2000, Windows XP, Windows Server 2003 family, Windows Server 2008 family, Windows Vista, Windows 7

See Also