/// <summary> /// Fills the interior of an ellipse defined by a bounding rectangle /// specified by a RectangleF structure. /// </summary> /// <param name="brush">Brush object that determines the characteristics of the fill.</param> /// <param name="rect">RectangleF structure that represents the bounding rectangle that defines the ellipse.</param> internal void FillEllipse( Brush brush, RectangleF rect ) { RenderingObject.FillEllipse(brush, rect); }