System\Drawing\Drawing2D\GraphicsPath.cs (6)
16public GraphicsPath() : this(FillMode.Alternate) { }
27public GraphicsPath(PointF[] pts, byte[] types) : this(pts, types, FillMode.Alternate) { }
41GraphicsPath(ReadOnlySpan<PointF> pts, ReadOnlySpan<byte> types, FillMode fillMode = FillMode.Alternate)
58public GraphicsPath(Point[] pts, byte[] types) : this(pts, types, FillMode.Alternate) { }
77GraphicsPath(ReadOnlySpan<Point> pts, ReadOnlySpan<byte> types, FillMode fillMode = FillMode.Alternate)
159if (value is < FillMode.Alternate or > FillMode.Winding)