Enum IGDIPlus.TGPImageType
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 TGPImageType = (ImageTypeUnknown, ImageTypeBitmap, ImageTypeMetafile);
C++ Builder:
enum TGPImageType {ImageTypeUnknown, ImageTypeBitmap, ImageTypeMetafile};
Visual C++ (MFC):
enum CTGPImageType {ImageTypeUnknown, ImageTypeBitmap, ImageTypeMetafile};
Summary
Indicates whether an image is a bitmap or a metafile.
Description
Defines an enumeration that indicates whether an image is a bitmap or a metafile. The TGPImage.GetType method returns an element of this enumeration.
Values
ImageTypeUnknown | Indicates that the image type is not known. |
ImageTypeBitmap | Indicates a bitmap image. |
ImageTypeMetafile | Indicates a metafile image. |