Determine if a point is visible in the region.
Syntax

[C#]

bool IsVisible(double x, double y);
bool IsVisible(double x, double y, double width, double height);
bool IsVisible(PointF pt);
bool IsVisible(PointF pt, Graphics g);
bool IsVisible(RectangleF rect);
bool IsVisible(RectangleF rect, Graphics g);

[Visual Basic]

Function IsVisible(x As Double, y As Double) As Boolean
Function IsVisible(x As Double, y As Double, width As Double, height As Double) As Boolean
Function IsVisible(pt As PointF) As Boolean
Function IsVisible(pt As PointF, g As Graphics) As Boolean
Function IsVisible(rect As RectangleF) As Boolean
Function IsVisible(rect As RectangleF, g As Graphics) As Boolean
Params
Name Description
x The x coordinate of the point.
y The y coordinate of the point.
width Width of the rectangle.
height Height of the rectangle.
pt The point.
rect The rectangle.
return True if the point is within the region.
Notes

None.

Example

None.