Document Solutions for PDF
GrapeCity.Documents.Imaging Assembly / GrapeCity.Documents.Drawing Namespace / GcGraphics Class / PushClip Method / PushClip(RectangleF,RectangleF) Method
The clipping rectangle.
The container rectangle.

In This Topic
    PushClip(RectangleF,RectangleF) Method
    In This Topic
    Specifies a rectangle to which all subsequent drawing operations are clipped. Clipping is applied only if containerRect does not contain clipRect.

    The GcGraphics.Clip object returned by this method implements IDisposable, so this method can be used with the 'using' pattern:

    using (g.PushClip(...)) ... in which case the clipping region will be removed when the returned object is disposed.
    Syntax
    'Declaration
     
    Public Overloads Function PushClip( _
       ByVal clipRect As System.Drawing.RectangleF, _
       ByVal containerRect As System.Drawing.RectangleF _
    ) As GcGraphics.Clip
    public GcGraphics.Clip PushClip( 
       System.Drawing.RectangleF clipRect,
       System.Drawing.RectangleF containerRect
    )

    Parameters

    clipRect
    The clipping rectangle.
    containerRect
    The container rectangle.

    Return Value

    The GcGraphics.Clip object that removes the clipping when disposed.
    See Also