Graphics.IsVisible Method (PointF)
Indicates whether the specified PointF structure is contained within the visible clip region of this Graphics.
Assembly: System.Drawing (in System.Drawing.dll)
Parameters
- point
-
Type:
System.Drawing.PointF
PointF structure to test for visibility.
Return Value
Type: System.Booleantrue if the point specified by the point parameter is contained within the visible clip region of this Graphics; otherwise, false.
The following code example is designed for use with Windows Forms, and it requires PaintEventArgse, which is a parameter of the Paint event handler. The code performs the following actions:
Creates a rectangular clipping region and sets it as the clipping region for the graphics of the form using Replace.
Creates two points, one inside the clipping region and one outside.
Tests each of the points for visibility and draws only the visible one.
The result is one small red circle, which is within the clip region.
Available since 1.1