[]
        
(Showing Draft Content)

C1.Framework.Drawing.Gdi.Graphics.ClipBound

ClipBound Property

ClipBound

Gets the Rectangle structure that bounds the clipping region of this Graphics object.

Declaration
public Rectangle ClipBound { get; }
Property Value
Type Description
Rectangle

This property indicates a Rectangle structure that represents a bounding rectangle for the clipping region of this Graphics object.

Examples

How to judge a Grphics's clip is empty?

bool isClipEmpty = (graphics.ClipBound == Rectangle.Empty);