Determines if GDIPlus is used to resize image.
Version Introduced: 3.0.2
Usage
Set_Property(OLECtrlEntID, "OLE.ResizeUsingGDIPlus", Boolean)
Values
[True | False]
Default: True
Remarks
The ResizeUsingGDIPlus property determines the technology used to resize the image. By default, this property is true, so GDIPlus is used for the resizing, which is slightly slower than standard GDI but produces much more pleasant results. If speed is more important that quality, or you simply have an image that does not seem to behave well when resizing, set this property to false.
Example
// Disable GDIPlus resizing Set_Property(@Window:".OLE_PICTURE", "OLE.ResizeUsingGDIPlus", 0)