[C#]
GraphicsPath();
GraphicsPath(FillMode fillMode);
GraphicsPath(Point[] pts, byte[] types);
GraphicsPath(Point[] pts, byte[] types, FillMode fillMode);
GraphicsPath(PointF[] pts, byte[] types);
GraphicsPath(PointF[] pts, byte[] types, FillMode fillMode);
[Visual Basic]
Sub New()
Sub New(fillMode As FillMode)
Sub New(pts As Point(), types As Byte())
Sub New(pts As Point(), types As Byte(), fillMode As FillMode)
Sub New(pts As PointF(), types As Byte())
Sub New(pts As PointF(), types As Byte(), fillMode As FillMode)
|