PathGradientBrush.PathGradientBrush

PathGradientBrush(PointF[])

Initializes a new instance of the PathGradientBrush class with the specified points.

public PathGradientBrush(PointF[] points)
ParameterTypeDescription
pointsPointF[]An array of PointF structures that represents the points that make up the vertices of the path.

See Also


PathGradientBrush(PointF[], WrapMode)

Initializes a new instance of the PathGradientBrush class with the specified points and wrap mode.

public PathGradientBrush(PointF[] points, WrapMode wrapMode)
ParameterTypeDescription
pointsPointF[]An array of PointF structures that represents the points that make up the vertices of the path.
wrapModeWrapModeA WrapMode that specifies how fills drawn with this PathGradientBrush are tiled.

See Also


PathGradientBrush(Point[])

Initializes a new instance of the PathGradientBrush class with the specified points.

public PathGradientBrush(Point[] points)
ParameterTypeDescription
pointsPoint[]An array of Point structures that represents the points that make up the vertices of the path.

See Also


PathGradientBrush(Point[], WrapMode)

Initializes a new instance of the PathGradientBrush class with the specified points and wrap mode.

public PathGradientBrush(Point[] points, WrapMode wrapMode)
ParameterTypeDescription
pointsPoint[]An array of Point structures that represents the points that make up the vertices of the path.
wrapModeWrapModeA WrapMode that specifies how fills drawn with this PathGradientBrush are tiled.

See Also


PathGradientBrush(GraphicsPath)

Initializes a new instance of the PathGradientBrush class with the specified path.

public PathGradientBrush(GraphicsPath path)
ParameterTypeDescription
pathGraphicsPathThe GraphicsPath that defines the area filled by this PathGradientBrush.

See Also