WebPlanner Programmer's Guide

IGraphics.SetClip Method (Region, CombineMode)

See Also
 


Sets the clipping region of this IGraphics object to the result of the specified operation combining the current clip region and the specified Region object.

Namespace: MindFusion.Drawing
Assembly: MindFusion.Common

 Syntax

C#  Copy Code

public abstract void SetClip (
    Region region,
    CombineMode combineMode
)

Visual Basic  Copy Code

Public MustOverride Sub SetClip ( _
    region As Region, _
    combineMode As CombineMode _
)

 Parameters

region
A .NET Region object to combine.
combineMode
Member from the .NET CombineMode enumeration that specifies the combining operation to use.

 See Also