LinearGradientBrush.LinearGradientBrush

LinearGradientBrush(PointF, PointF, Color, Color)

Initializes a new instance of the LinearGradientBrush class with the specified points and colors.

public LinearGradientBrush(PointF point1, PointF point2, Color color1, Color color2)
ParameterTypeDescription
point1PointFA PointF structure that represents the starting point of the linear gradient.
point2PointFA PointF structure that represents the endpoint of the linear gradient.
color1ColorA Color structure that represents the starting color of the linear gradient.
color2ColorA Color structure that represents the ending color of the linear gradient.

See Also


LinearGradientBrush(Point, Point, Color, Color)

Initializes a new instance of the LinearGradientBrush class with the specified points and colors.

public LinearGradientBrush(Point point1, Point point2, Color color1, Color color2)
ParameterTypeDescription
point1PointA Point structure that represents the starting point of the linear gradient.
point2PointA Point structure that represents the endpoint of the linear gradient.
color1ColorA Color structure that represents the starting color of the linear gradient.
color2ColorA Color structure that represents the ending color of the linear gradient.

See Also


LinearGradientBrush(RectangleF, Color, Color, LinearGradientMode)

Initializes a new instance of the LinearGradientBrush class based on a rectangle, starting and ending colors, and an orientation mode.

public LinearGradientBrush(RectangleF rect, Color color1, Color color2, 
    LinearGradientMode linearGradientMode)
ParameterTypeDescription
rectRectangleFA RectangleF structure that specifies the bounds of the linear gradient.
color1ColorA Color structure that represents the starting color for the gradient.
color2ColorA Color structure that represents the ending color for the gradient.
linearGradientModeLinearGradientModeA LinearGradientMode enumeration element that specifies the orientation of the gradient. The orientation determines the starting and ending points of the gradient. For example, LinearGradientMode.ForwardDiagonal specifies that the starting point is the upper-left corner of the rectangle and the ending point is the lower-right corner of the rectangle.

See Also


LinearGradientBrush(Rectangle, Color, Color, LinearGradientMode)

Initializes a new instance of the LinearGradientBrush class based on a rectangle, starting and ending colors, and orientation.

public LinearGradientBrush(Rectangle rect, Color color1, Color color2, 
    LinearGradientMode linearGradientMode)
ParameterTypeDescription
rectRectangleA Rectangle structure that specifies the bounds of the linear gradient.
color1ColorA Color structure that represents the starting color for the gradient.
color2ColorA Color structure that represents the ending color for the gradient.
linearGradientModeLinearGradientModeA LinearGradientMode enumeration element that specifies the orientation of the gradient. The orientation determines the starting and ending points of the gradient. For example, LinearGradientMode.ForwardDiagonal specifies that the starting point is the upper-left corner of the rectangle and the ending point is the lower-right corner of the rectangle.

See Also


LinearGradientBrush(RectangleF, Color, Color, float)

Initializes a new instance of the LinearGradientBrush class based on a rectangle, starting and ending colors, and an orientation angle.

public LinearGradientBrush(RectangleF rect, Color color1, Color color2, float angle)
ParameterTypeDescription
rectRectangleFA RectangleF structure that specifies the bounds of the linear gradient.
color1ColorA Color structure that represents the starting color for the gradient.
color2ColorA Color structure that represents the ending color for the gradient.
angleSingleThe angle, measured in degrees clockwise from the x-axis, of the gradient’s orientation line.

See Also


LinearGradientBrush(RectangleF, Color, Color, float, bool)

Initializes a new instance of the LinearGradientBrush class based on a rectangle, starting and ending colors, and an orientation angle.

public LinearGradientBrush(RectangleF rect, Color color1, Color color2, float angle, 
    bool isAngleScaleable)
ParameterTypeDescription
rectRectangleFA RectangleF structure that specifies the bounds of the linear gradient.
color1ColorA Color structure that represents the starting color for the gradient.
color2ColorA Color structure that represents the ending color for the gradient.
angleSingleThe angle, measured in degrees clockwise from the x-axis, of the gradient’s orientation line.
isAngleScaleableBooleanSet to true to specify that the angle is affected by the transform associated with this LinearGradientBrush; otherwise, false.

See Also


LinearGradientBrush(Rectangle, Color, Color, float)

Initializes a new instance of the LinearGradientBrush class based on a rectangle, starting and ending colors, and an orientation angle.

public LinearGradientBrush(Rectangle rect, Color color1, Color color2, float angle)
ParameterTypeDescription
rectRectangleA Rectangle structure that specifies the bounds of the linear gradient.
color1ColorA Color structure that represents the starting color for the gradient.
color2ColorA Color structure that represents the ending color for the gradient.
angleSingleThe angle, measured in degrees clockwise from the x-axis, of the gradient’s orientation line.

See Also


LinearGradientBrush(Rectangle, Color, Color, float, bool)

Initializes a new instance of the LinearGradientBrush class based on a rectangle, starting and ending colors, and an orientation angle.

public LinearGradientBrush(Rectangle rect, Color color1, Color color2, float angle, 
    bool isAngleScaleable)
ParameterTypeDescription
rectRectangleA Rectangle structure that specifies the bounds of the linear gradient.
color1ColorA Color structure that represents the starting color for the gradient.
color2ColorA Color structure that represents the ending color for the gradient.
angleSingleThe angle, measured in degrees clockwise from the x-axis, of the gradient’s orientation line.
isAngleScaleableBooleanSet to true to specify that the angle is affected by the transform associated with this LinearGradientBrush; otherwise, false.

See Also