GraphicsPath.IsVisible
IsVisible(float, float)
Indicates whether the specified point is contained within this GraphicsPath.
public bool IsVisible(float x, float y)
Parameter | Type | Description |
---|---|---|
x | Single | The X coordinate of the point to test. |
y | Single | The 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
- class GraphicsPath
- namespace Aspose.Drawing.Drawing2D
- assembly Aspose.Drawing.Common
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)
Parameter | Type | Description |
---|---|---|
x | Single | The X coordinate of the point to test. |
y | Single | The Y coordinate of the point to test. |
graphics | Graphics | The 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
- class Graphics
- class GraphicsPath
- namespace Aspose.Drawing.Drawing2D
- assembly Aspose.Drawing.Common
IsVisible(int, int)
Indicates whether the specified point is contained within this GraphicsPath.
public bool IsVisible(int x, int y)
Parameter | Type | Description |
---|---|---|
x | Int32 | The X coordinate of the point to test. |
y | Int32 | The 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
- class GraphicsPath
- namespace Aspose.Drawing.Drawing2D
- assembly Aspose.Drawing.Common
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)
Parameter | Type | Description |
---|---|---|
x | Int32 | The X coordinate of the point to test. |
y | Int32 | The Y coordinate of the point to test. |
graphics | Graphics | The 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
- class Graphics
- class GraphicsPath
- namespace Aspose.Drawing.Drawing2D
- assembly Aspose.Drawing.Common
IsVisible(Point)
Indicates whether the specified point is contained within this GraphicsPath.
public bool IsVisible(Point point)
Parameter | Type | Description |
---|---|---|
point | Point | A 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
- struct Point
- class GraphicsPath
- namespace Aspose.Drawing.Drawing2D
- assembly Aspose.Drawing.Common
IsVisible(Point, Graphics)
Indicates whether the specified point is contained within this GraphicsPath, using the specified Graphics.
public bool IsVisible(Point point, Graphics graphics)
Parameter | Type | Description |
---|---|---|
point | Point | A Point that represents the point to test. |
graphics | Graphics | The 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
- struct Point
- class Graphics
- class GraphicsPath
- namespace Aspose.Drawing.Drawing2D
- assembly Aspose.Drawing.Common
IsVisible(PointF)
Indicates whether the specified point is contained within this GraphicsPath.
public bool IsVisible(PointF point)
Parameter | Type | Description |
---|---|---|
point | PointF | A 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
- struct PointF
- class GraphicsPath
- namespace Aspose.Drawing.Drawing2D
- assembly Aspose.Drawing.Common
IsVisible(PointF, Graphics)
Indicates whether the specified point is contained within this GraphicsPath, using the specified Graphics.
public bool IsVisible(PointF point, Graphics graphics)
Parameter | Type | Description |
---|---|---|
point | PointF | A PointF that represents the point to test. |
graphics | Graphics | The 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
- struct PointF
- class Graphics
- class GraphicsPath
- namespace Aspose.Drawing.Drawing2D
- assembly Aspose.Drawing.Common