GraphicsPath()

GraphicsPath::GraphicsPath(FillMode) constructor

Constructs a new instance of GraphicsPath class with the specified fill mode.

System::Drawing::Drawing2D::GraphicsPath::GraphicsPath(FillMode fillMode=FillMode::Alternate)

Arguments

ParameterTypeDescription
fillModeFillModeSpecifies how the interior of the closed path represented by the object being created should be filled

GraphicsPath::GraphicsPath(const ArrayPtr<Point>&, const ArrayPtr<uint8_t>&, FillMode) constructor

Constructs a new instance of GraphicsPath object that represents the specified path.

System::Drawing::Drawing2D::GraphicsPath::GraphicsPath(const ArrayPtr<Point> &pts, const ArrayPtr<uint8_t> &types, FillMode fillMode=FillMode::Alternate)

Arguments

ParameterTypeDescription
ptsconst ArrayPtr<Point>&An array containing the points that specify the path to be represented by the object being created
typesconst ArrayPtr<uint8_t>&An array containing the values tha specify the types of the corresponding points in pts array
fillModeFillModeSpecifies how the interior of the closed path represented by the object being created should be filled

GraphicsPath::GraphicsPath(const ArrayPtr<PointF>&, const ArrayPtr<uint8_t>&, FillMode) constructor

Constructs a new instance of GraphicsPath object that represents the specified path.

System::Drawing::Drawing2D::GraphicsPath::GraphicsPath(const ArrayPtr<PointF> &pts, const ArrayPtr<uint8_t> &types, FillMode fillMode=FillMode::Alternate)

Arguments

ParameterTypeDescription
ptsconst ArrayPtr<PointF>&An array containing the points that specify the path to be represented by the object being created
typesconst ArrayPtr<uint8_t>&An array containing the values tha specify the types of the corresponding points in pts array
fillModeFillModeSpecifies how the interior of the closed path represented by the object being created should be filled

GraphicsPath::GraphicsPath(const SkPath&) constructor

System::Drawing::Drawing2D::GraphicsPath::GraphicsPath(const SkPath &path)

See Also