IsVisible

GraphicsPath.IsVisible method (1 of 8)

Indicates whether the specified point is contained within this GraphicsPath.

public bool IsVisible(float x, float y)
ParameterTypeDescription
xSingleThe x-coordinate of the point to test.
ySingleThe y-coordinate of the point to test.

Return Value

This method returns true if the specified point is contained within this GraphicsPath; otherwise, false.

See Also


GraphicsPath.IsVisible method (2 of 8)

Indicates whether the specified point is contained within this GraphicsPath.

public bool IsVisible(PointF point)
ParameterTypeDescription
pointPointFA PointF that represents the point to test.

Return Value

This method returns true if the specified point is contained within this GraphicsPath; otherwise, false.

See Also


GraphicsPath.IsVisible method (3 of 8)

Indicates whether the specified point is contained within this GraphicsPath.

public bool IsVisible(int x, int y)
ParameterTypeDescription
xInt32The x-coordinate of the point to test.
yInt32The y-coordinate of the point to test.

Return Value

This method returns true if the specified point is contained within this GraphicsPath; otherwise, false.

See Also


GraphicsPath.IsVisible method (4 of 8)

Indicates whether the specified point is contained within this GraphicsPath.

public bool IsVisible(Point point)
ParameterTypeDescription
pointPointA Point that represents the point to test.

Return Value

This method returns true if the specified point is contained within this GraphicsPath; otherwise, false.

See Also


GraphicsPath.IsVisible method (5 of 8)

Indicates whether the specified point is contained within this GraphicsPath in the visible clip region of the specified Graphics.

public bool IsVisible(float x, float y, Graphics graphics)
ParameterTypeDescription
xSingleThe x-coordinate of the point to test.
ySingleThe y-coordinate of the point to test.
graphicsGraphicsThe Graphics for which to test visibility.

Return Value

This method returns true if the specified point is contained within this GraphicsPath; otherwise, false.

See Also


GraphicsPath.IsVisible method (6 of 8)

Indicates whether the specified point is contained within this GraphicsPath.

public bool IsVisible(PointF pt, Graphics graphics)
ParameterTypeDescription
ptPointFA PointF that represents the point to test.
graphicsGraphicsThe Graphics for which to test visibility.

Return Value

This method returns true if the specified point is contained within this; otherwise, false.

See Also


GraphicsPath.IsVisible method (7 of 8)

Indicates whether the specified point is contained within this GraphicsPath, using the specified Graphics.

public bool IsVisible(int x, int y, Graphics graphics)
ParameterTypeDescription
xInt32The x-coordinate of the point to test.
yInt32The y-coordinate of the point to test.
graphicsGraphicsThe Graphics for which to test visibility.

Return Value

This method returns true if the specified point is contained within this GraphicsPath; otherwise, false.

See Also


GraphicsPath.IsVisible method (8 of 8)

Indicates whether the specified point is contained within this GraphicsPath.

public bool IsVisible(Point pt, Graphics graphics)
ParameterTypeDescription
ptPointA Point that represents the point to test.
graphicsGraphicsThe Graphics for which to test visibility.

Return Value

This method returns true if the specified point is contained within this GraphicsPath; otherwise, false.

See Also