GraphicsPath Konstruktoren
Definition
Wichtig
Einige Informationen beziehen sich auf Vorabversionen, die vor dem Release ggf. grundlegend überarbeitet werden. Microsoft übernimmt hinsichtlich der hier bereitgestellten Informationen keine Gewährleistungen, seien sie ausdrücklich oder konkludent.
Initialisiert eine neue Instanz der GraphicsPath-Klasse mit einer FillMode-Enumeration von Alternate
.
Überlädt
GraphicsPath() |
Initialisiert eine neue Instanz der GraphicsPath-Klasse mit dem FillMode-Wert Alternate. |
GraphicsPath(FillMode) |
Initialisiert eine neue Instanz der GraphicsPath-Klasse mit der angegebenen FillMode-Enumeration. |
GraphicsPath(Point[], Byte[]) |
Initialisiert eine neue Instanz der GraphicsPath-Klasse mit dem angegebenen PathPointType-Array und dem angegebenen Point-Array. |
GraphicsPath(PointF[], Byte[]) |
Initialisiert eine neue Instanz des GraphicsPath-Arrays mit dem angegebenen PathPointType-Array und dem angegebenen PointF-Array. |
GraphicsPath(Point[], Byte[], FillMode) |
Initialisiert eine neue Instanz der GraphicsPath-Klasse mit dem angegebenen PathPointType-Array, dem angegebenen Point-Array und dem angegebenen FillMode-Enumerationselement. |
GraphicsPath(PointF[], Byte[], FillMode) |
Initialisiert eine neue Instanz des GraphicsPath-Arrays mit dem angegebenen PathPointType-Array, dem angegebenen PointF-Array und dem angegebenen FillMode-Enumerationselement. |
GraphicsPath(ReadOnlySpan<Point>, ReadOnlySpan<Byte>, FillMode) | |
GraphicsPath(ReadOnlySpan<PointF>, ReadOnlySpan<Byte>, FillMode) |
GraphicsPath()
- Quelle:
- GraphicsPath.cs
- Quelle:
- GraphicsPath.cs
- Quelle:
- GraphicsPath.cs
Initialisiert eine neue Instanz der GraphicsPath-Klasse mit dem FillMode-Wert Alternate.
public:
GraphicsPath();
public GraphicsPath ();
Public Sub New ()
Gilt für:
GraphicsPath(FillMode)
- Quelle:
- GraphicsPath.cs
- Quelle:
- GraphicsPath.cs
- Quelle:
- GraphicsPath.cs
Initialisiert eine neue Instanz der GraphicsPath-Klasse mit der angegebenen FillMode-Enumeration.
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)
Parameter
- fillMode
- FillMode
Die FillMode-Enumeration, die bestimmt, wie das Innere dieses GraphicsPath ausgefüllt wird.
Gilt für:
GraphicsPath(Point[], Byte[])
- Quelle:
- GraphicsPath.cs
- Quelle:
- GraphicsPath.cs
- Quelle:
- GraphicsPath.cs
Initialisiert eine neue Instanz der GraphicsPath-Klasse mit dem angegebenen PathPointType-Array und dem angegebenen Point-Array.
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())
Parameter
- pts
- Point[]
Ein Array von Point-Strukturen, das die Koordinaten der Punkte definiert, aus denen dieser GraphicsPath besteht.
- types
- Byte[]
Ein Array von PathPointType-Enumerationselementen, das den Typ für jeden entsprechenden Punkt im pts
-Array angibt.
Gilt für:
GraphicsPath(PointF[], Byte[])
- Quelle:
- GraphicsPath.cs
- Quelle:
- GraphicsPath.cs
- Quelle:
- GraphicsPath.cs
Initialisiert eine neue Instanz des GraphicsPath-Arrays mit dem angegebenen PathPointType-Array und dem angegebenen PointF-Array.
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())
Parameter
- pts
- PointF[]
Ein Array von PointF-Strukturen, das die Koordinaten der Punkte definiert, aus denen dieser GraphicsPath besteht.
- types
- Byte[]
Ein Array von PathPointType-Enumerationselementen, das den Typ für jeden entsprechenden Punkt im pts
-Array angibt.
Gilt für:
GraphicsPath(Point[], Byte[], FillMode)
- Quelle:
- GraphicsPath.cs
- Quelle:
- GraphicsPath.cs
- Quelle:
- GraphicsPath.cs
Initialisiert eine neue Instanz der GraphicsPath-Klasse mit dem angegebenen PathPointType-Array, dem angegebenen Point-Array und dem angegebenen FillMode-Enumerationselement.
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)
Parameter
- pts
- Point[]
Ein Array von Point-Strukturen, das die Koordinaten der Punkte definiert, aus denen dieser GraphicsPath besteht.
- types
- Byte[]
Ein Array von PathPointType-Enumerationselementen, das den Typ für jeden entsprechenden Punkt im pts
-Array angibt.
- fillMode
- FillMode
Eine FillMode-Enumeration, die angibt, wie das Innere der Formen in diesem GraphicsPath gefüllt wird.
Gilt für:
GraphicsPath(PointF[], Byte[], FillMode)
- Quelle:
- GraphicsPath.cs
- Quelle:
- GraphicsPath.cs
- Quelle:
- GraphicsPath.cs
Initialisiert eine neue Instanz des GraphicsPath-Arrays mit dem angegebenen PathPointType-Array, dem angegebenen PointF-Array und dem angegebenen FillMode-Enumerationselement.
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)
Parameter
- pts
- PointF[]
Ein Array von PointF-Strukturen, das die Koordinaten der Punkte definiert, aus denen dieser GraphicsPath besteht.
- types
- Byte[]
Ein Array von PathPointType-Enumerationselementen, das den Typ für jeden entsprechenden Punkt im pts
-Array angibt.
- fillMode
- FillMode
Eine FillMode-Enumeration, die angibt, wie das Innere der Formen in diesem GraphicsPath gefüllt wird.
Gilt für:
GraphicsPath(ReadOnlySpan<Point>, ReadOnlySpan<Byte>, FillMode)
- Quelle:
- 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)
Parameter
- pts
- ReadOnlySpan<Point>
- types
- ReadOnlySpan<Byte>
- fillMode
- FillMode
Gilt für:
GraphicsPath(ReadOnlySpan<PointF>, ReadOnlySpan<Byte>, FillMode)
- Quelle:
- 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)
Parameter
- pts
- ReadOnlySpan<PointF>
- types
- ReadOnlySpan<Byte>
- fillMode
- FillMode