GraphicsPath.GraphicsPath
GraphicsPath()
Initializes a new instance of the GraphicsPath class with a FillMode value of Alternate.
public GraphicsPath()
See Also
- class GraphicsPath
- namespace Aspose.Drawing.Drawing2D
- assembly Aspose.Drawing.Common
GraphicsPath(FillMode)
Initializes a new instance of the GraphicsPath
class with the specified FillMode enumeration.
public GraphicsPath(FillMode fillMode)
Parameter | Type | Description |
---|---|---|
fillMode | FillMode | The FillMode enumeration that determines how the interior of this GraphicsPath is filled. |
See Also
- enum FillMode
- class GraphicsPath
- namespace Aspose.Drawing.Drawing2D
- assembly Aspose.Drawing.Common
GraphicsPath(PointF[], byte[])
Initializes a new instance of the GraphicsPath
class with the specified PathPointType
and PointF arrays.
public GraphicsPath(PointF[] pts, byte[] types)
Parameter | Type | Description |
---|---|---|
pts | PointF[] | An array of PointF structures that defines the coordinates of the points that make up this GraphicsPath . |
types | Byte[] | 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
- struct PointF
- class GraphicsPath
- namespace Aspose.Drawing.Drawing2D
- assembly Aspose.Drawing.Common
GraphicsPath(Point[], byte[])
Initializes a new instance of the GraphicsPath
class with the specified PathPointType
and Point arrays.
public GraphicsPath(Point[] pts, byte[] types)
Parameter | Type | Description |
---|---|---|
pts | Point[] | An array of Point structures that defines the coordinates of the points that make up this GraphicsPath . |
types | Byte[] | 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
- struct Point
- class GraphicsPath
- namespace Aspose.Drawing.Drawing2D
- assembly Aspose.Drawing.Common
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)
Parameter | Type | Description |
---|---|---|
pts | PointF[] | An array of PointF structures that defines the coordinates of the points that make up this GraphicsPath. |
types | Byte[] | An array of PathPointType enumeration elements that specifies the type of each corresponding point in the pts array. |
fillMode | FillMode | A FillMode enumeration that specifies how the interiors of shapes in this GraphicsPath are filled. |
See Also
- struct PointF
- enum FillMode
- class GraphicsPath
- namespace Aspose.Drawing.Drawing2D
- assembly Aspose.Drawing.Common
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)
Parameter | Type | Description |
---|---|---|
pts | Point[] | An array of Point structures that defines the coordinates of the points that make up this GraphicsPath. |
types | Byte[] | An array of PathPointType enumeration elements that specifies the type of each corresponding point in the pts array. |
fillMode | FillMode | A FillMode enumeration that specifies how the interiors of shapes in this GraphicsPath are filled. |
See Also
- struct Point
- enum FillMode
- class GraphicsPath
- namespace Aspose.Drawing.Drawing2D
- assembly Aspose.Drawing.Common