public void SetClip(RectangleF rect)
 {
     RenderingObject.SetClip(rect);
 }
 public void SetClip(GraphicsPath path, CombineMode combineMode)
 {
     RenderingObject.SetClip(path, combineMode);
 }
 /// <summary>
 /// Sets the clipping region of this Graphics object to the rectangle specified by a RectangleF structure.
 /// </summary>
 /// <param name="rect">RectangleF structure that represents the new clip region.</param>
 internal void SetClipAbs(RectangleF rect)
 {
     RenderingObject.SetClip(rect);
 }