DXGraphicsPath(IReadOnlyList<PointF>, IReadOnlyList<DXPathPointType>, DXFillMode) Constructor
Initializes a new instance of the DXGraphicsPath class with specified settings.
Namespace: DevExpress.Drawing
Assembly: DevExpress.Drawing.v24.1.dll
NuGet Package: DevExpress.Drawing
Declaration
public DXGraphicsPath(
IReadOnlyList<PointF> points,
IReadOnlyList<DXPathPointType> types,
DXFillMode fillMode = DXFillMode.Alternate
)
Parameters
Name | Type | Description |
---|---|---|
points | IReadOnlyList<PointF> | A list of point coordinates that define the |
types | IReadOnlyList<DXPathPointType> | A list of enumeration values that specify the type of each corresponding point in the |
Optional Parameters
Name | Type | Default | Description |
---|---|---|---|
fillMode | DXFillMode | Alternate | An enumeration value that indicates the fill mode of the closed path interior. |
See Also