GraphicsPath.IsVisible

IsVisible(float, float)

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


IsVisible(PointF)

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