GraphicsPath

GraphicsPath()

使用 Alternate 的 FillMode 值初始化 GraphicsPath 类的新实例。

public GraphicsPath()

也可以看看


GraphicsPath(FillMode)

初始化GraphicsPath具有指定 的类FillMode枚举.

public GraphicsPath(FillMode fillMode)
范围类型描述
fillModeFillMode这FillMode确定 this 的 internal 如何的枚举GraphicsPath充满。

也可以看看


GraphicsPath(PointF[], byte[])

初始化GraphicsPath具有指定的类PathPointType和PointF数组.

public GraphicsPath(PointF[] pts, byte[] types)
范围类型描述
ptsPointF[]一个数组PointF定义构成此点的坐标的结构GraphicsPath.
typesByte[]一个数组PathPointType枚举元素,指定每个对应点的类型pts大批。

评论

这个方法实际上什么都不做。它只是为了与 System.Drawing API. 兼容

也可以看看


GraphicsPath(Point[], byte[])

初始化GraphicsPath具有指定的类PathPointType和Point数组.

public GraphicsPath(Point[] pts, byte[] types)
范围类型描述
ptsPoint[]一个数组Point定义构成此点的坐标的结构GraphicsPath.
typesByte[]一个数组PathPointType枚举元素,指定每个对应点的类型pts大批。

评论

这个方法实际上什么都不做。它只是为了与 System.Drawing API. 兼容

也可以看看


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

初始化GraphicsPath具有指定的类PathPointType和PointF数组和指定的FillMode枚举元素..

public GraphicsPath(PointF[] pts, byte[] types, FillMode fillMode)
范围类型描述
ptsPointF[]一个数组PointF定义构成此点的坐标的结构GraphicsPath.
typesByte[]一个数组PathPointType枚举元素,指定 pts 数组中每个对应点的类型。
fillModeFillMode一个FillMode枚举,指定此形状的内部如何GraphicsPath被填满。

也可以看看


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

初始化GraphicsPath具有指定的类PathPointType和Point数组和指定的FillMode枚举元素..

public GraphicsPath(Point[] pts, byte[] types, FillMode fillMode)
范围类型描述
ptsPoint[]一个数组Point定义构成此点的坐标的结构GraphicsPath.
typesByte[]一个数组PathPointType枚举元素,指定 pts 数组中每个对应点的类型。
fillModeFillMode一个FillMode枚举,指定此形状的内部如何GraphicsPath被填满。

也可以看看