GraphicsPath 생성자
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
Alternate
의 GraphicsPath 열거형을 사용하여 FillMode 클래스의 새 인스턴스를 초기화합니다.
오버로드
GraphicsPath() |
GraphicsPath의 FillMode 값을 사용하여 Alternate 클래스의 새 인스턴스를 초기화합니다. |
GraphicsPath(FillMode) |
지정된 GraphicsPath 열거형을 사용하여 FillMode 클래스의 새 인스턴스를 초기화합니다. |
GraphicsPath(Point[], Byte[]) |
지정된 GraphicsPath 및 PathPointType 배열을 사용하여 Point 클래스의 새 인스턴스를 초기화합니다. |
GraphicsPath(PointF[], Byte[]) |
지정된 GraphicsPath 및 PathPointType 배열을 사용하여 PointF 배열의 새 인스턴스를 초기화합니다. |
GraphicsPath(Point[], Byte[], FillMode) |
지정된 GraphicsPath 및 PathPointType 배열과 지정된 Point 열거형 요소를 사용하여 FillMode 클래스의 새 인스턴스를 초기화합니다. |
GraphicsPath(PointF[], Byte[], FillMode) |
지정된 GraphicsPath 및 PathPointType 배열과 지정된 PointF 열거형 요소를 사용하여 FillMode 배열의 새 인스턴스를 초기화합니다. |
GraphicsPath(ReadOnlySpan<Point>, ReadOnlySpan<Byte>, FillMode) | |
GraphicsPath(ReadOnlySpan<PointF>, ReadOnlySpan<Byte>, FillMode) |
GraphicsPath()
- Source:
- GraphicsPath.cs
- Source:
- GraphicsPath.cs
- Source:
- GraphicsPath.cs
GraphicsPath의 FillMode 값을 사용하여 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
지정된 GraphicsPath 및 PathPointType 배열을 사용하여 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[]
pts
배열에 있는 각 해당 지점의 종류를 지정하는 PathPointType 열거형 요소의 배열입니다.
적용 대상
GraphicsPath(PointF[], Byte[])
- Source:
- GraphicsPath.cs
- Source:
- GraphicsPath.cs
- Source:
- GraphicsPath.cs
지정된 GraphicsPath 및 PathPointType 배열을 사용하여 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[]
pts
배열에 있는 각 해당 지점의 종류를 지정하는 PathPointType 열거형 요소의 배열입니다.
적용 대상
GraphicsPath(Point[], Byte[], FillMode)
- Source:
- GraphicsPath.cs
- Source:
- GraphicsPath.cs
- Source:
- GraphicsPath.cs
지정된 GraphicsPath 및 PathPointType 배열과 지정된 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[]
pts
배열에 있는 각 해당 지점의 종류를 지정하는 PathPointType 열거형 요소의 배열입니다.
- fillMode
- FillMode
이 FillMode에 있는 모양의 내부를 채우는 방법을 지정하는 GraphicsPath 열거형입니다.
적용 대상
GraphicsPath(PointF[], Byte[], FillMode)
- Source:
- GraphicsPath.cs
- Source:
- GraphicsPath.cs
- Source:
- GraphicsPath.cs
지정된 GraphicsPath 및 PathPointType 배열과 지정된 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[]
pts
배열에 있는 각 해당 지점의 종류를 지정하는 PathPointType 열거형 요소의 배열입니다.
- 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)
매개 변수
- pts
- ReadOnlySpan<Point>
- types
- ReadOnlySpan<Byte>
- 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)
매개 변수
- pts
- ReadOnlySpan<PointF>
- types
- ReadOnlySpan<Byte>
- fillMode
- FillMode
적용 대상
.NET