28 references to FillMode
System.Drawing (28)
commonui\System\Drawing\Advanced\GraphicsPath.cs (18)
41/// Initializes a new instance of the <see cref='System.Drawing.Drawing2D.GraphicsPath'/> class with a <see cref='System.Drawing.Drawing2D.FillMode'/> of <see cref='System.Drawing.Drawing2D.FillMode.Alternate'/> 47public GraphicsPath() : this(System.Drawing.Drawing2D.FillMode.Alternate) { } 54/// Initializes a new instance of the <see cref='System.Drawing.Drawing2D.GraphicsPath'/> class with the specified <see cref='System.Drawing.Drawing2D.FillMode'/>. 58public GraphicsPath(FillMode fillMode) { 82this(pts, types, System.Drawing.Drawing2D.FillMode.Alternate) {} 89/// specified <see cref='System.Drawing.Drawing2D.FillMode'/>. 94public GraphicsPath(PointF[] pts, byte[] types, FillMode fillMode) { 135this(pts, types, System.Drawing.Drawing2D.FillMode.Alternate) {} 142/// specified <see cref='System.Drawing.Drawing2D.FillMode'/>. 147public GraphicsPath(Point[] pts, byte[] types, FillMode fillMode) { 257/// <see cref='System.Drawing.Drawing2D.FillMode.Alternate'/>. 271/// Gets or sets a <see cref='System.Drawing.Drawing2D.FillMode'/> that determines how the interiors of 274public FillMode FillMode { 283return(FillMode) fillmode; 288if (!ClientUtils.IsEnumValid(value, unchecked((int)value), (int)FillMode.Alternate, (int)FillMode.Winding)) 290throw new InvalidEnumArgumentException("value", unchecked((int)value), typeof(FillMode));
commonui\System\Drawing\Graphics.cs (10)
1901public void DrawClosedCurve(Pen pen, PointF[] points, float tension, FillMode fillmode) { 1952public void DrawClosedCurve(Pen pen, Point[] points, float tension, FillMode fillmode) { 2106FillPolygon(brush, points, FillMode.Alternate); 2115public void FillPolygon(Brush brush, PointF[] points, FillMode fillMode) { 2142FillPolygon(brush, points, FillMode.Alternate); 2151public void FillPolygon(Brush brush, Point[] points, FillMode fillMode) { 2336public void FillClosedCurve(Brush brush, PointF[] points, FillMode fillmode) { 2344public void FillClosedCurve(Brush brush, PointF[] points, FillMode fillmode, float tension) { 2394public void FillClosedCurve(Brush brush, Point[] points, FillMode fillmode) { 2402public void FillClosedCurve(Brush brush, Point[] points, FillMode fillmode, float tension) {