IsOutlineVisible

GraphicsPath.IsOutlineVisible method (1 of 8)

Indicates whether the specified point is contained within (under) the outline of this GraphicsPath when drawn with the specified Pen.

public bool IsOutlineVisible(float x, float y, Pen pen)
ParameterTypeDescription
xSingleThe x-coordinate of the point to test.
ySingleThe y-coordinate of the point to test.
penPenThe Pen to test.

Return Value

This method returns true if the specified point is contained within the outline of this GraphicsPath when drawn with the specified Pen; otherwise, false.

See Also


GraphicsPath.IsOutlineVisible method (2 of 8)

Indicates whether the specified point is contained within (under) the outline of this GraphicsPath when drawn with the specified Pen.

public bool IsOutlineVisible(PointF point, Pen pen)
ParameterTypeDescription
pointPointFA PointF that specifies the location to test.
penPenThe Pen to test.

Return Value

This method returns true if the specified point is contained within the outline of this GraphicsPath when drawn with the specified Pen; otherwise, false.

See Also


GraphicsPath.IsOutlineVisible method (3 of 8)

Indicates whether the specified point is contained within (under) the outline of this GraphicsPath when drawn with the specified Pen and using the specified Graphics.

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

Return Value

This method returns true if the specified point is contained within (under) the outline of this GraphicsPath as drawn with the specified Pen; otherwise, false.

See Also


GraphicsPath.IsOutlineVisible method (4 of 8)

Indicates whether the specified point is contained within (under) the outline of this GraphicsPath when drawn with the specified Pen and using the specified Graphics.

public bool IsOutlineVisible(PointF pt, Pen pen, Graphics graphics)
ParameterTypeDescription
ptPointFA PointF that specifies the location to test.
penPenThe Pen to test.
graphicsGraphicsThe Graphics for which to test visibility.

Return Value

This method returns true if the specified point is contained within (under) the outline of this GraphicsPath as drawn with the specified Pen; otherwise, false.

See Also


GraphicsPath.IsOutlineVisible method (5 of 8)

Indicates whether the specified point is contained within (under) the outline of this GraphicsPath when drawn with the specified Pen.

public bool IsOutlineVisible(int x, int y, Pen pen)
ParameterTypeDescription
xInt32The x-coordinate of the point to test.
yInt32The y-coordinate of the point to test.
penPenThe Pen to test.

Return Value

This method returns true if the specified point is contained within the outline of this GraphicsPath when drawn with the specified Pen; otherwise, false.

See Also


GraphicsPath.IsOutlineVisible method (6 of 8)

Indicates whether the specified point is contained within (under) the outline of this GraphicsPath when drawn with the specified Pen.

public bool IsOutlineVisible(Point point, Pen pen)
ParameterTypeDescription
pointPointA Point that specifies the location to test.
penPenThe Pen to test.

Return Value

This method returns true if the specified point is contained within the outline of this GraphicsPath when drawn with the specified Pen; otherwise, false.

See Also


GraphicsPath.IsOutlineVisible method (7 of 8)

Indicates whether the specified point is contained within (under) the outline of this GraphicsPath when drawn with the specified Pen and using the specified Graphics.

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

Return Value

This method returns true if the specified point is contained within the outline of this GraphicsPath as drawn with the specified Pen; otherwise, false.

See Also


GraphicsPath.IsOutlineVisible method (8 of 8)

Indicates whether the specified point is contained within (under) the outline of this GraphicsPath when drawn with the specified Pen and using the specified Graphics.

public bool IsOutlineVisible(Point pt, Pen pen, Graphics graphics)
ParameterTypeDescription
ptPointA Point that specifies the location to test.
penPenThe Pen to test.
graphicsGraphicsThe Graphics for which to test visibility.

Return Value

This method returns true if the specified point is contained within the outline of this GraphicsPath as drawn with the specified Pen; otherwise, false.

See Also