Enum IGDIPlus.TGPUnit
From Mitov Wiki Doc
This is a Beta Read Only version of this page. Please review and send recommendations to mitov@mitov.com. We will enable the editing as soon as we are happy with the overall Wiki site.
Package: SignalLabBasicPkg
Unit: IGDIPlus
Contents |
Syntax
Delphi:
type TGPUnit = (UnitWorld, UnitDisplay, UnitPixel, UnitPoint, UnitInch, UnitDocument, UnitMillimeter);
C++ Builder:
enum TGPUnit {UnitWorld, UnitDisplay, UnitPixel, UnitPoint, UnitInch, UnitDocument, UnitMillimeter};
Visual C++ (MFC):
enum CTGPUnit {UnitWorld, UnitDisplay, UnitPixel, UnitPoint, UnitInch, UnitDocument, UnitMillimeter};
Summary
specifies the unit of measure for a given data type.
Description
Defines enumeration that specifies the unit of measure for a given data type.
Values
UnitWorld | Specifies world coordinates, a nonphysical unit. |
UnitDisplay | Specifies display units. For example, if the display device is a monitor, then the unit is 1 pixel. |
UnitPixel | Specifies that a unit is 1 pixel. |
UnitPoint | Specifies that a unit is 1 point or 1/72 inch. |
UnitInch | Specifies that a unit is 1 inch. |
UnitDocument | Specifies that a unit is 1/300 inch. |
UnitMillimeter | Specifies that a unit is 1 millimeter. |