Combines current clipping region with given rectangle using specified set-theoretic operation.
Namespace:
Aurigma.GraphicsMill.Drawing
Assembly:
Aurigma.GraphicsMill (in Aurigma.GraphicsMill.dll)
Public Sub SetClip ( _ clipRectangle As Rectangle, _ combineMode As CombineMode _ )
public void SetClip( Rectangle clipRectangle, CombineMode combineMode )
Type: System.Drawing.Rectangle
Rectangle structure which is being combined with current clipping region.Type: System.Drawing.Drawing2D.CombineMode
CombineMode value defining set-theoretic operation used to combine given rectangle with current clipping region.You can also modify the clipping region through ExcludeClip(Rectangle), IntersectClip(Rectangle) and TranslateClip(Int32, Int32) methods. Clipping region can be discarded with ResetClip() property.
All the coordinates are measured in units specified with Unit property.