Enum IGDIPlus.TGPLinearGradientMode
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 TGPLinearGradientMode = (LinearGradientModeHorizontal, LinearGradientModeVertical, LinearGradientModeForwardDiagonal, LinearGradientModeBackwardDiagonal);
C++ Builder:
enum TGPLinearGradientMode {LinearGradientModeHorizontal, LinearGradientModeVertical, LinearGradientModeForwardDiagonal, LinearGradientModeBackwardDiagonal};
Visual C++ (MFC):
enum CTGPLinearGradientMode {LinearGradientModeHorizontal, LinearGradientModeVertical, LinearGradientModeForwardDiagonal, LinearGradientModeBackwardDiagonal};
Summary
Specifies the direction in which the change of color occurs for a linear gradient brush.
Description
This enumeration that specifies the direction in which the change of color occurs for a linear gradient brush.
Values
LinearGradientModeHorizontal | Specifies the color to change in a horizontal direction from the left of the display to the right of the display. |
LinearGradientModeVertical | Specifies the color to change in a vertical direction from the top of the display to the bottom of the display. |
LinearGradientModeForwardDiagonal | Specifies the color to change in a forward diagonal direction from the upper-left corner to the lower-right corner of the display. |
LinearGradientModeBackwardDiagonal | Specifies the color to change in a backward diagonal direction from the upper-right corner to the lower-left corner of the display. |