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
| Name | Beschreibung |
|---|---|
| GraphicsPath() |
Initialisiert eine neue Instanz der GraphicsPath Klasse mit dem FillMode Wert von 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 den angegebenen PathPointType und Point Arrays. |
| GraphicsPath(PointF[], Byte[]) |
Initialisiert eine neue Instanz des GraphicsPath Arrays mit den angegebenen PathPointType und PointF Arrays. |
| GraphicsPath(Point[], Byte[], FillMode) |
Initialisiert eine neue Instanz der GraphicsPath Klasse mit den angegebenen PathPointType Und Point Arrays und mit dem angegebenen FillMode Enumerationselement. |
| GraphicsPath(PointF[], Byte[], FillMode) |
Initialisiert eine neue Instanz des GraphicsPath Arrays mit den angegebenen PathPointType Arrays und PointF mit dem angegebenen FillMode Enumerationselement. |
| GraphicsPath(ReadOnlySpan<Point>, ReadOnlySpan<Byte>, FillMode) |
Initialisiert eine neue Instanz der GraphicsPath Klasse mit den angegebenen PathPointType Und Point Arrays und mit dem angegebenen FillMode Enumerationselement. |
| GraphicsPath(ReadOnlySpan<PointF>, ReadOnlySpan<Byte>, FillMode) |
Initialisiert eine neue Instanz der GraphicsPath Klasse mit den angegebenen PathPointType Und Point Arrays und mit dem angegebenen FillMode Enumerationselement. |
GraphicsPath()
- Quelle:
- GraphicsPath.cs
- Quelle:
- GraphicsPath.cs
- Quelle:
- GraphicsPath.cs
- Quelle:
- GraphicsPath.cs
- Quelle:
- GraphicsPath.cs
- Quelle:
- GraphicsPath.cs
- Quelle:
- GraphicsPath.cs
- Quelle:
- GraphicsPath.cs
Initialisiert eine neue Instanz der GraphicsPath Klasse mit dem FillMode Wert von Alternate.
public:
GraphicsPath();
public GraphicsPath();
Public Sub New ()
Gilt für:
GraphicsPath(FillMode)
- Quelle:
- GraphicsPath.cs
- Quelle:
- GraphicsPath.cs
- Quelle:
- GraphicsPath.cs
- Quelle:
- GraphicsPath.cs
- Quelle:
- GraphicsPath.cs
- 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 Aufzählung, die bestimmt, wie der Innenbereich dieser GraphicsPath Daten gefüllt ist.
Gilt für:
GraphicsPath(Point[], Byte[])
- Quelle:
- GraphicsPath.cs
- Quelle:
- GraphicsPath.cs
- Quelle:
- GraphicsPath.cs
- Quelle:
- GraphicsPath.cs
- Quelle:
- GraphicsPath.cs
- Quelle:
- GraphicsPath.cs
- Quelle:
- GraphicsPath.cs
- Quelle:
- GraphicsPath.cs
Initialisiert eine neue Instanz der GraphicsPath Klasse mit den angegebenen PathPointType und Point Arrays.
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, die die Koordinaten der Punkte definieren, aus denen dies GraphicsPathbesteht.
- types
- Byte[]
Ein Array von PathPointType Enumerationselementen, das den Typ jedes entsprechenden Punkts pts im Array angibt.
Gilt für:
GraphicsPath(PointF[], Byte[])
- Quelle:
- GraphicsPath.cs
- Quelle:
- GraphicsPath.cs
- Quelle:
- GraphicsPath.cs
- Quelle:
- GraphicsPath.cs
- Quelle:
- GraphicsPath.cs
- Quelle:
- GraphicsPath.cs
- Quelle:
- GraphicsPath.cs
- Quelle:
- GraphicsPath.cs
Initialisiert eine neue Instanz des GraphicsPath Arrays mit den angegebenen PathPointType und PointF Arrays.
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, die die Koordinaten der Punkte definieren, aus denen dies GraphicsPathbesteht.
- types
- Byte[]
Ein Array von PathPointType Enumerationselementen, das den Typ jedes entsprechenden Punkts pts im Array angibt.
Gilt für:
GraphicsPath(Point[], Byte[], FillMode)
- Quelle:
- GraphicsPath.cs
- Quelle:
- GraphicsPath.cs
- Quelle:
- GraphicsPath.cs
- Quelle:
- GraphicsPath.cs
- Quelle:
- GraphicsPath.cs
- Quelle:
- GraphicsPath.cs
- Quelle:
- GraphicsPath.cs
- Quelle:
- GraphicsPath.cs
Initialisiert eine neue Instanz der GraphicsPath Klasse mit den angegebenen PathPointType Und Point Arrays und mit 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, die die Koordinaten der Punkte definieren, aus denen dies GraphicsPathbesteht.
- types
- Byte[]
Ein Array von PathPointType Enumerationselementen, das den Typ jedes entsprechenden Punkts pts im Array angibt.
- fillMode
- FillMode
Eine FillMode Aufzählung, die angibt, wie die Innenräume von Formen darin GraphicsPath gefüllt werden.
Gilt für:
GraphicsPath(PointF[], Byte[], FillMode)
- Quelle:
- GraphicsPath.cs
- Quelle:
- GraphicsPath.cs
- Quelle:
- GraphicsPath.cs
- Quelle:
- GraphicsPath.cs
- Quelle:
- GraphicsPath.cs
- Quelle:
- GraphicsPath.cs
- Quelle:
- GraphicsPath.cs
- Quelle:
- GraphicsPath.cs
Initialisiert eine neue Instanz des GraphicsPath Arrays mit den angegebenen PathPointType Arrays und PointF mit 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, die die Koordinaten der Punkte definieren, aus denen dies GraphicsPathbesteht.
- types
- Byte[]
Ein Array von PathPointType Enumerationselementen, das den Typ jedes entsprechenden Punkts pts im Array angibt.
- fillMode
- FillMode
Eine FillMode Aufzählung, die angibt, wie die Innenräume von Formen darin GraphicsPath gefüllt werden.
Gilt für:
GraphicsPath(ReadOnlySpan<Point>, ReadOnlySpan<Byte>, FillMode)
- Quelle:
- GraphicsPath.cs
- Quelle:
- GraphicsPath.cs
- Quelle:
- GraphicsPath.cs
- Quelle:
- GraphicsPath.cs
- Quelle:
- GraphicsPath.cs
Initialisiert eine neue Instanz der GraphicsPath Klasse mit den angegebenen PathPointType Und Point Arrays und mit dem angegebenen FillMode Enumerationselement.
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>
Ein Array von Point Strukturen, die die Koordinaten der Punkte definieren, aus denen dies GraphicsPathbesteht.
- types
- ReadOnlySpan<Byte>
Ein Array von PathPointType Enumerationselementen, das den Typ jedes entsprechenden Punkts pts im Array angibt.
- fillMode
- FillMode
Eine FillMode Aufzählung, die angibt, wie die Innenräume von Formen darin GraphicsPath gefüllt werden.
Gilt für:
GraphicsPath(ReadOnlySpan<PointF>, ReadOnlySpan<Byte>, FillMode)
- Quelle:
- GraphicsPath.cs
- Quelle:
- GraphicsPath.cs
- Quelle:
- GraphicsPath.cs
- Quelle:
- GraphicsPath.cs
- Quelle:
- GraphicsPath.cs
Initialisiert eine neue Instanz der GraphicsPath Klasse mit den angegebenen PathPointType Und Point Arrays und mit dem angegebenen FillMode Enumerationselement.
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>
Ein Array von Point Strukturen, die die Koordinaten der Punkte definieren, aus denen dies GraphicsPathbesteht.
- types
- ReadOnlySpan<Byte>
Ein Array von PathPointType Enumerationselementen, das den Typ jedes entsprechenden Punkts pts im Array angibt.
- fillMode
- FillMode
Eine FillMode Aufzählung, die angibt, wie die Innenräume von Formen darin GraphicsPath gefüllt werden.