Enum IGDIPlus.TGPPenType
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 TGPPenType = (PenTypeSolidColor, Ord, BrushTypeSolidColor, PenTypeHatchFill, Ord, BrushTypeHatchFill, PenTypeTextureFill, Ord, BrushTypeTextureFill, PenTypePathGradient, Ord, BrushTypePathGradient, PenTypeLinearGradient, Ord, BrushTypeLinearGradient, PenTypeUnknown);
C++ Builder:
enum TGPPenType {PenTypeSolidColor, Ord, BrushTypeSolidColor, PenTypeHatchFill, Ord, BrushTypeHatchFill, PenTypeTextureFill, Ord, BrushTypeTextureFill, PenTypePathGradient, Ord, BrushTypePathGradient, PenTypeLinearGradient, Ord, BrushTypeLinearGradient, PenTypeUnknown};
Visual C++ (MFC):
enum CTGPPenType {PenTypeSolidColor, Ord, BrushTypeSolidColor, PenTypeHatchFill, Ord, BrushTypeHatchFill, PenTypeTextureFill, Ord, BrushTypeTextureFill, PenTypePathGradient, Ord, BrushTypePathGradient, PenTypeLinearGradient, Ord, BrushTypeLinearGradient, PenTypeUnknown};
Summary
Indicates the type of pattern, texture, or gradient that a pen draws.
Description
The TGPPenType enumeration indicates the type of pattern, texture, or gradient that a pen draws.
Values
| PenTypeSolidColor | Indicates that the pen draws with a solid color. |
| Ord | |
| BrushTypeSolidColor | |
| PenTypeHatchFill | Indicates that the pen draws with a hatch pattern that is specified by a TGPHatchBrush object. |
| Ord | |
| BrushTypeHatchFill | |
| PenTypeTextureFill | Indicates that the pen draws with a texture that is specified by a TGPTextureBrush object. |
| Ord | |
| BrushTypeTextureFill | |
| PenTypePathGradient | Indicates that the pen draws with a color gradient that is specified by a TGPPathGradientBrush object. |
| Ord | |
| BrushTypePathGradient | |
| PenTypeLinearGradient | Indicates that the pen draws with a color gradient that is specified by a TGPLinearGradientBrush object. |
| Ord | |
| BrushTypeLinearGradient | |
| PenTypeUnknown | Indicates that the pen type is unknown. |