/// <summary> /// Fills the interior of a GraphicsPath. /// </summary> /// <param name="brush">Brush that determines the characteristics of the fill. </param> /// <param name="path">GraphicsPath that represents the path to fill. </param> public abstract void DrawPath(RBrush brush, RGraphicsPath path);
/// <summary> /// Draws a GraphicsPath. /// </summary> /// <param name="pen">Pen that determines the color, width, and style of the path. </param> /// <param name="path">GraphicsPath to draw. </param> public abstract void DrawPath(RPen pen, RGraphicsPath path);