GraphicsPath 构造函数

定义

使用 AlternateGraphicsPath 枚举初始化 FillMode 类的新实例。

重载

GraphicsPath()

GraphicsPathFillMode 值初始化 Alternate 类的新实例。

GraphicsPath(FillMode)

使用指定的 GraphicsPath 枚举初始化 FillMode 类的新实例。

GraphicsPath(Point[], Byte[])

使用指定的 GraphicsPathPathPointType 数组初始化 Point 类的新实例。

GraphicsPath(PointF[], Byte[])

使用指定的 GraphicsPathPathPointType 数组初始化 PointF 数组的新实例。

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

使用指定的 GraphicsPathPathPointType 数组以及指定的 Point 枚举元素初始化 FillMode 类的新实例。

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

使用指定的 GraphicsPathPathPointType 数组以及指定的 PointF 枚举元素初始化 FillMode 数组的新实例。

GraphicsPath(ReadOnlySpan<Point>, ReadOnlySpan<Byte>, FillMode)
GraphicsPath(ReadOnlySpan<PointF>, ReadOnlySpan<Byte>, FillMode)

GraphicsPath()

Source:
GraphicsPath.cs
Source:
GraphicsPath.cs
Source:
GraphicsPath.cs

GraphicsPathFillMode 值初始化 Alternate 类的新实例。

public:
 GraphicsPath();
public GraphicsPath ();
Public Sub New ()

适用于

GraphicsPath(FillMode)

Source:
GraphicsPath.cs
Source:
GraphicsPath.cs
Source:
GraphicsPath.cs

使用指定的 GraphicsPath 枚举初始化 FillMode 类的新实例。

public:
 GraphicsPath(System::Drawing::Drawing2D::FillMode fillMode);
public GraphicsPath (System.Drawing.Drawing2D.FillMode fillMode);
new System.Drawing.Drawing2D.GraphicsPath : System.Drawing.Drawing2D.FillMode -> System.Drawing.Drawing2D.GraphicsPath
Public Sub New (fillMode As FillMode)

参数

fillMode
FillMode

FillMode 枚举,它确定填充此 GraphicsPath 内部的方式。

适用于

GraphicsPath(Point[], Byte[])

Source:
GraphicsPath.cs
Source:
GraphicsPath.cs
Source:
GraphicsPath.cs

使用指定的 GraphicsPathPathPointType 数组初始化 Point 类的新实例。

public:
 GraphicsPath(cli::array <System::Drawing::Point> ^ pts, cli::array <System::Byte> ^ types);
public GraphicsPath (System.Drawing.Point[] pts, byte[] types);
new System.Drawing.Drawing2D.GraphicsPath : System.Drawing.Point[] * byte[] -> System.Drawing.Drawing2D.GraphicsPath
Public Sub New (pts As Point(), types As Byte())

参数

pts
Point[]

Point 结构的数组,它定义组成此 GraphicsPath 的点的坐标。

types
Byte[]

PathPointType 枚举元素的数组,它指定 pts 数组中各相应点的类型。

适用于

GraphicsPath(PointF[], Byte[])

Source:
GraphicsPath.cs
Source:
GraphicsPath.cs
Source:
GraphicsPath.cs

使用指定的 GraphicsPathPathPointType 数组初始化 PointF 数组的新实例。

public:
 GraphicsPath(cli::array <System::Drawing::PointF> ^ pts, cli::array <System::Byte> ^ types);
public GraphicsPath (System.Drawing.PointF[] pts, byte[] types);
new System.Drawing.Drawing2D.GraphicsPath : System.Drawing.PointF[] * byte[] -> System.Drawing.Drawing2D.GraphicsPath
Public Sub New (pts As PointF(), types As Byte())

参数

pts
PointF[]

PointF 结构的数组,它定义组成此 GraphicsPath 的点的坐标。

types
Byte[]

PathPointType 枚举元素的数组,它指定 pts 数组中各相应点的类型。

适用于

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

Source:
GraphicsPath.cs
Source:
GraphicsPath.cs
Source:
GraphicsPath.cs

使用指定的 GraphicsPathPathPointType 数组以及指定的 Point 枚举元素初始化 FillMode 类的新实例。

public:
 GraphicsPath(cli::array <System::Drawing::Point> ^ pts, cli::array <System::Byte> ^ types, System::Drawing::Drawing2D::FillMode fillMode);
public GraphicsPath (System.Drawing.Point[] pts, byte[] types, System.Drawing.Drawing2D.FillMode fillMode);
new System.Drawing.Drawing2D.GraphicsPath : System.Drawing.Point[] * byte[] * System.Drawing.Drawing2D.FillMode -> System.Drawing.Drawing2D.GraphicsPath
Public Sub New (pts As Point(), types As Byte(), fillMode As FillMode)

参数

pts
Point[]

Point 结构的数组,它定义组成此 GraphicsPath 的点的坐标。

types
Byte[]

PathPointType 枚举元素的数组,它指定 pts 数组中各相应点的类型。

fillMode
FillMode

一个 FillMode 枚举,它指定此 GraphicsPath 中的形状的内部如何填充。

适用于

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

Source:
GraphicsPath.cs
Source:
GraphicsPath.cs
Source:
GraphicsPath.cs

使用指定的 GraphicsPathPathPointType 数组以及指定的 PointF 枚举元素初始化 FillMode 数组的新实例。

public:
 GraphicsPath(cli::array <System::Drawing::PointF> ^ pts, cli::array <System::Byte> ^ types, System::Drawing::Drawing2D::FillMode fillMode);
public GraphicsPath (System.Drawing.PointF[] pts, byte[] types, System.Drawing.Drawing2D.FillMode fillMode);
new System.Drawing.Drawing2D.GraphicsPath : System.Drawing.PointF[] * byte[] * System.Drawing.Drawing2D.FillMode -> System.Drawing.Drawing2D.GraphicsPath
Public Sub New (pts As PointF(), types As Byte(), fillMode As FillMode)

参数

pts
PointF[]

PointF 结构的数组,它定义组成此 GraphicsPath 的点的坐标。

types
Byte[]

PathPointType 枚举元素的数组,它指定 pts 数组中各相应点的类型。

fillMode
FillMode

一个 FillMode 枚举,它指定此 GraphicsPath 中的形状的内部如何填充。

适用于

GraphicsPath(ReadOnlySpan<Point>, ReadOnlySpan<Byte>, FillMode)

Source:
GraphicsPath.cs
public GraphicsPath (ReadOnlySpan<System.Drawing.Point> pts, ReadOnlySpan<byte> types, System.Drawing.Drawing2D.FillMode fillMode = System.Drawing.Drawing2D.FillMode.Alternate);
new System.Drawing.Drawing2D.GraphicsPath : ReadOnlySpan<System.Drawing.Point> * ReadOnlySpan<byte> * System.Drawing.Drawing2D.FillMode -> System.Drawing.Drawing2D.GraphicsPath
Public Sub New (pts As ReadOnlySpan(Of Point), types As ReadOnlySpan(Of Byte), Optional fillMode As FillMode = System.Drawing.Drawing2D.FillMode.Alternate)

参数

fillMode
FillMode

适用于

GraphicsPath(ReadOnlySpan<PointF>, ReadOnlySpan<Byte>, FillMode)

Source:
GraphicsPath.cs
public GraphicsPath (ReadOnlySpan<System.Drawing.PointF> pts, ReadOnlySpan<byte> types, System.Drawing.Drawing2D.FillMode fillMode = System.Drawing.Drawing2D.FillMode.Alternate);
new System.Drawing.Drawing2D.GraphicsPath : ReadOnlySpan<System.Drawing.PointF> * ReadOnlySpan<byte> * System.Drawing.Drawing2D.FillMode -> System.Drawing.Drawing2D.GraphicsPath
Public Sub New (pts As ReadOnlySpan(Of PointF), types As ReadOnlySpan(Of Byte), Optional fillMode As FillMode = System.Drawing.Drawing2D.FillMode.Alternate)

参数

fillMode
FillMode

适用于