System.Drawing.Brush.Setup C# (CSharp) Method

Setup() abstract private method

abstract private Setup ( Graphics graphics, bool fill ) : void
graphics Graphics
fill bool
return void
        internal abstract void Setup(Graphics graphics, bool fill);

Usage Example

Ejemplo n.º 1
0
 public void FillEllipse(Brush brush, RectangleF rect)
 {
     if (brush == null)
     {
         throw new ArgumentNullException("brush");
     }
     brush.Setup(this, true);
     context.FillEllipseInRect(rect);
 }
All Usage Examples Of System.Drawing.Brush::Setup