This documentation is for the old version. Go to the latest Graphics Mill docs

GdiGraphics.Clip Property

Returns clipping region defined for this GdiGraphics class instance.

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

Syntax

Visual Basic
Public ReadOnly Property Clip As Region
C#
public Region Clip { get; }

Property Value

Region structure which contains clipping region defined for this GdiGraphics class instance.

Remarks

If you modify Region returned with this property clipping region of this GdiGraphics class instance will not be changed. To change 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