GradientSpreadMethod Enum
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Specifies how to draw the gradient outside a gradient brush's gradient vector or space.
public enum class GradientSpreadMethod
public enum GradientSpreadMethod
type GradientSpreadMethod =
Public Enum GradientSpreadMethod
- Inheritance
Fields
Name | Value | Description |
---|---|---|
Pad | 0 | Default value. The color values at the ends of the gradient vector fill the remaining space. |
Reflect | 1 | The gradient is repeated in the reverse direction until the space is filled. |
Repeat | 2 | The gradient is repeated in the original direction until the space is filled. |
Remarks
The following illustration shows the available spread methods and their effect on LinearGradientBrush and RadialGradientBrush. The red line indicates the gradient space. A LinearGradientBrush defines its gradient space with its StartPoint and EndPoint properties. A RadialGradientBrush defines its gradient space with its Center, RadiusX, and RadiusY properties.
Gradient spread methods