TcxCustomCanvas.IntersectClipRect(TRect) Method
In This Article
Shrinks the clip region down to its intersection with a specified rectangle.
#Declaration
Delphi
procedure IntersectClipRect(const R: TRect); overload; virtual; abstract;
#Parameters
Name | Type |
---|---|
R | TRect |
#Remarks
Call this procedure and pass a rectangle as the R
parameter to shrink the clip region of the canvas. The IntersectClipRect
procedure defines a new clip region formed by an intersection of the current clip region and the specified rectangle.
See Also