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(float, float, Graphics)

Indicates whether the specified point is contained within this GraphicsPath, using 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 GraphicsPath for which to test visibility.

Return Value

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

See Also


IsVisible(int, int)

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


IsVisible(int, int, Graphics)

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 GraphicsPath for which to test visibility.

Return Value

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

See Also


IsVisible(Point)

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


IsVisible(Point, Graphics)

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

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

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


IsVisible(PointF, Graphics)

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

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

Return Value

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

See Also