Graphics.Clip Property

Gets a Region that limits the drawing region of this Graphics.

Namespace: Aurigma.GraphicsMill.Drawing
Assembly: Aurigma.GraphicsMill (in Aurigma.GraphicsMill.dll)

Syntax

C#
public Region Clip { get; }

Property Value

A Region that limits the portion of this Graphics that is currently available for drawing.

Remarks

If you modify a Region returned with this property, the clipping region of this Graphics will not be changed. To change a clipping region use such methods as SetClip(Region, CombineMode), IntersectClip(Region), ExcludeClip(Region), and TranslateClip(Int32, Int32). Clip region can be reset with ResetClip() method.

See Also

Reference