GraphicsPath Constructeurs
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Initialise une nouvelle instance de la GraphicsPath classe avec une FillMode énumération de Alternate.
Surcharges
| Nom | Description |
|---|---|
| GraphicsPath() |
Initialise une nouvelle instance de la classe GraphicsPath avec une valeur FillMode de Alternate. |
| GraphicsPath(FillMode) |
Initialise une nouvelle instance de la classe GraphicsPath avec l’énumération FillMode spécifiée. |
| GraphicsPath(Point[], Byte[]) |
Initialise une nouvelle instance de la classe GraphicsPath avec les tableaux PathPointType et Point spécifiés. |
| GraphicsPath(PointF[], Byte[]) |
Initialise une nouvelle instance du tableau GraphicsPath avec les PathPointType et les tableaux PointF spécifiés. |
| GraphicsPath(Point[], Byte[], FillMode) |
Initialise une nouvelle instance de la classe GraphicsPath avec les tableaux PathPointType et Point spécifiés et avec l’élément d’énumération FillMode spécifié. |
| GraphicsPath(PointF[], Byte[], FillMode) |
Initialise une nouvelle instance du tableau GraphicsPath avec les tableaux PathPointType et PointF spécifiés et avec l’élément d’énumération FillMode spécifié. |
| GraphicsPath(ReadOnlySpan<Point>, ReadOnlySpan<Byte>, FillMode) |
Initialise une nouvelle instance de la classe GraphicsPath avec les tableaux PathPointType et Point spécifiés et avec l’élément d’énumération FillMode spécifié. |
| GraphicsPath(ReadOnlySpan<PointF>, ReadOnlySpan<Byte>, FillMode) |
Initialise une nouvelle instance de la classe GraphicsPath avec les tableaux PathPointType et Point spécifiés et avec l’élément d’énumération FillMode spécifié. |
GraphicsPath()
- Source:
- GraphicsPath.cs
- Source:
- GraphicsPath.cs
- Source:
- GraphicsPath.cs
- Source:
- GraphicsPath.cs
- Source:
- GraphicsPath.cs
- Source:
- GraphicsPath.cs
- Source:
- GraphicsPath.cs
- Source:
- GraphicsPath.cs
Initialise une nouvelle instance de la classe GraphicsPath avec une valeur FillMode de Alternate.
public:
GraphicsPath();
public GraphicsPath();
Public Sub New ()
S’applique à
GraphicsPath(FillMode)
- Source:
- GraphicsPath.cs
- Source:
- GraphicsPath.cs
- Source:
- GraphicsPath.cs
- Source:
- GraphicsPath.cs
- Source:
- GraphicsPath.cs
- Source:
- GraphicsPath.cs
- Source:
- GraphicsPath.cs
- Source:
- GraphicsPath.cs
Initialise une nouvelle instance de la classe GraphicsPath avec l’énumération FillMode spécifiée.
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)
Paramètres
- fillMode
- FillMode
Énumération FillMode qui détermine la façon dont l’intérieur de celui-ci GraphicsPath est rempli.
S’applique à
GraphicsPath(Point[], Byte[])
- Source:
- GraphicsPath.cs
- Source:
- GraphicsPath.cs
- Source:
- GraphicsPath.cs
- Source:
- GraphicsPath.cs
- Source:
- GraphicsPath.cs
- Source:
- GraphicsPath.cs
- Source:
- GraphicsPath.cs
- Source:
- GraphicsPath.cs
Initialise une nouvelle instance de la classe GraphicsPath avec les tableaux PathPointType et Point spécifiés.
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())
Paramètres
- pts
- Point[]
Tableau de Point structures qui définit les coordonnées des points qui composent ce GraphicsPath.
- types
- Byte[]
Tableau d’éléments d’énumération PathPointType qui spécifie le type de chaque point correspondant dans le pts tableau.
S’applique à
GraphicsPath(PointF[], Byte[])
- Source:
- GraphicsPath.cs
- Source:
- GraphicsPath.cs
- Source:
- GraphicsPath.cs
- Source:
- GraphicsPath.cs
- Source:
- GraphicsPath.cs
- Source:
- GraphicsPath.cs
- Source:
- GraphicsPath.cs
- Source:
- GraphicsPath.cs
Initialise une nouvelle instance du tableau GraphicsPath avec les PathPointType et les tableaux PointF spécifiés.
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())
Paramètres
- pts
- PointF[]
Tableau de PointF structures qui définit les coordonnées des points qui composent ce GraphicsPath.
- types
- Byte[]
Tableau d’éléments d’énumération PathPointType qui spécifie le type de chaque point correspondant dans le pts tableau.
S’applique à
GraphicsPath(Point[], Byte[], FillMode)
- Source:
- GraphicsPath.cs
- Source:
- GraphicsPath.cs
- Source:
- GraphicsPath.cs
- Source:
- GraphicsPath.cs
- Source:
- GraphicsPath.cs
- Source:
- GraphicsPath.cs
- Source:
- GraphicsPath.cs
- Source:
- GraphicsPath.cs
Initialise une nouvelle instance de la classe GraphicsPath avec les tableaux PathPointType et Point spécifiés et avec l’élément d’énumération FillMode spécifié.
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)
Paramètres
- pts
- Point[]
Tableau de Point structures qui définit les coordonnées des points qui composent ce GraphicsPath.
- types
- Byte[]
Tableau d’éléments d’énumération PathPointType qui spécifie le type de chaque point correspondant dans le pts tableau.
- fillMode
- FillMode
Énumération FillMode qui spécifie la façon dont les intérieurs des formes dans ce GraphicsPath sont remplis.
S’applique à
GraphicsPath(PointF[], Byte[], FillMode)
- Source:
- GraphicsPath.cs
- Source:
- GraphicsPath.cs
- Source:
- GraphicsPath.cs
- Source:
- GraphicsPath.cs
- Source:
- GraphicsPath.cs
- Source:
- GraphicsPath.cs
- Source:
- GraphicsPath.cs
- Source:
- GraphicsPath.cs
Initialise une nouvelle instance du tableau GraphicsPath avec les tableaux PathPointType et PointF spécifiés et avec l’élément d’énumération FillMode spécifié.
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)
Paramètres
- pts
- PointF[]
Tableau de PointF structures qui définit les coordonnées des points qui composent ce GraphicsPath.
- types
- Byte[]
Tableau d’éléments d’énumération PathPointType qui spécifie le type de chaque point correspondant dans le pts tableau.
- fillMode
- FillMode
Énumération FillMode qui spécifie la façon dont les intérieurs des formes dans ce GraphicsPath sont remplis.
S’applique à
GraphicsPath(ReadOnlySpan<Point>, ReadOnlySpan<Byte>, FillMode)
- Source:
- GraphicsPath.cs
- Source:
- GraphicsPath.cs
- Source:
- GraphicsPath.cs
- Source:
- GraphicsPath.cs
- Source:
- GraphicsPath.cs
Initialise une nouvelle instance de la classe GraphicsPath avec les tableaux PathPointType et Point spécifiés et avec l’élément d’énumération FillMode spécifié.
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)
Paramètres
- pts
- ReadOnlySpan<Point>
Tableau de Point structures qui définit les coordonnées des points qui composent ce GraphicsPath.
- types
- ReadOnlySpan<Byte>
Tableau d’éléments d’énumération PathPointType qui spécifie le type de chaque point correspondant dans le pts tableau.
- fillMode
- FillMode
Énumération FillMode qui spécifie la façon dont les intérieurs des formes dans ce GraphicsPath sont remplis.
S’applique à
GraphicsPath(ReadOnlySpan<PointF>, ReadOnlySpan<Byte>, FillMode)
- Source:
- GraphicsPath.cs
- Source:
- GraphicsPath.cs
- Source:
- GraphicsPath.cs
- Source:
- GraphicsPath.cs
- Source:
- GraphicsPath.cs
Initialise une nouvelle instance de la classe GraphicsPath avec les tableaux PathPointType et Point spécifiés et avec l’élément d’énumération FillMode spécifié.
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)
Paramètres
- pts
- ReadOnlySpan<PointF>
Tableau de Point structures qui définit les coordonnées des points qui composent ce GraphicsPath.
- types
- ReadOnlySpan<Byte>
Tableau d’éléments d’énumération PathPointType qui spécifie le type de chaque point correspondant dans le pts tableau.
- fillMode
- FillMode
Énumération FillMode qui spécifie la façon dont les intérieurs des formes dans ce GraphicsPath sont remplis.