GraphicsPath.GraphicsPath

GraphicsPath()

Initializes a new instance of the GraphicsPath class with a FillMode value of Alternate.

public GraphicsPath()

See Also


GraphicsPath(FillMode)

Initializes a new instance of the GraphicsPath class with the specified FillMode enumeration.

public GraphicsPath(FillMode fillMode)
ParameterTypeDescription
fillModeFillModeThe FillMode enumeration that determines how the interior of this GraphicsPath is filled.

See Also


GraphicsPath(PointF[], byte[])

Initializes a new instance of the GraphicsPath class with the specified PathPointType and PointF arrays.

public GraphicsPath(PointF[] pts, byte[] types)
ParameterTypeDescription
ptsPointF[]An array of PointF structures that defines the coordinates of the points that make up this GraphicsPath.
typesByte[]An array of PathPointType enumeration elements that specifies the type of each corresponding point in the pts array.

Remarks

This method actually does nothing. It’s just for compatibility with System.Drawing API.

See Also


GraphicsPath(Point[], byte[])

Initializes a new instance of the GraphicsPath class with the specified PathPointType and Point arrays.

public GraphicsPath(Point[] pts, byte[] types)
ParameterTypeDescription
ptsPoint[]An array of Point structures that defines the coordinates of the points that make up this GraphicsPath.
typesByte[]An array of PathPointType enumeration elements that specifies the type of each corresponding point in the pts array.

Remarks

This method actually does nothing. It’s just for compatibility with System.Drawing API.

See Also


GraphicsPath(PointF[], byte[], FillMode)

Initializes a new instance of the GraphicsPath class with the specified PathPointType and PointF arrays and with the specified FillMode enumeration element..

public GraphicsPath(PointF[] pts, byte[] types, FillMode fillMode)
ParameterTypeDescription
ptsPointF[]An array of PointF structures that defines the coordinates of the points that make up this GraphicsPath.
typesByte[]An array of PathPointType enumeration elements that specifies the type of each corresponding point in the pts array.
fillModeFillModeA FillMode enumeration that specifies how the interiors of shapes in this GraphicsPath are filled.

See Also


GraphicsPath(Point[], byte[], FillMode)

Initializes a new instance of the GraphicsPath class with the specified PathPointType and Point arrays and with the specified FillMode enumeration element..

public GraphicsPath(Point[] pts, byte[] types, FillMode fillMode)
ParameterTypeDescription
ptsPoint[]An array of Point structures that defines the coordinates of the points that make up this GraphicsPath.
typesByte[]An array of PathPointType enumeration elements that specifies the type of each corresponding point in the pts array.
fillModeFillModeA FillMode enumeration that specifies how the interiors of shapes in this GraphicsPath are filled.

See Also