System.Drawing.Drawing2D.GraphicsPath.GraphicsPath C# (CSharp) Method

GraphicsPath() public method

public GraphicsPath ( FillMode fillMode ) : CoreGraphics
fillMode FillMode
return CoreGraphics
        public GraphicsPath(FillMode fillMode)
        {
            this.fillMode = fillMode;
            points = new List<PointF> ();
            types = new List<byte> ();
        }

Same methods

GraphicsPath::GraphicsPath ( ) : CoreGraphics
GraphicsPath::GraphicsPath ( Point pts, byte types ) : CoreGraphics
GraphicsPath::GraphicsPath ( Point pts, byte types, FillMode fillMode ) : CoreGraphics
GraphicsPath::GraphicsPath ( PointF pts, byte types ) : CoreGraphics
GraphicsPath::GraphicsPath ( PointF pts, byte types, FillMode fillMode ) : CoreGraphics