Graphics.IsVisible
IsVisible(PointF)
Indicates whether the specified PointF structure is contained within the visible clip region of this Graphics.
public bool IsVisible(PointF point)
Parameter | Type | Description |
---|---|---|
point | PointF | PointF structure to test for visibility. |
Return Value
true
if the point defined by the point parameter is contained within the visible clip region of this Graphics; otherwise, false
.
See Also
- struct PointF
- class Graphics
- namespace System.Drawing
- assembly Aspose.Drawing
IsVisible(int, int, int, int)
Indicates whether the rectangle specified by a pair of coordinates, a width, and a height is contained within the visible clip region of this Graphics.
public bool IsVisible(int x, int y, int width, int height)
Parameter | Type | Description |
---|---|---|
x | Int32 | The x-coordinate of the upper-left corner of the rectangle to test for visibility. |
y | Int32 | The y-coordinate of the upper-left corner of the rectangle to test for visibility. |
width | Int32 | Width of the rectangle to test for visibility. |
height | Int32 | Height of the rectangle to test for visibility. |
Return Value
true
if the rectangle defined by the x, y, width, and height parameters is contained within the visible clip region of this Graphics; otherwise, false
.
See Also
- class Graphics
- namespace System.Drawing
- assembly Aspose.Drawing
IsVisible(Rectangle)
Indicates whether the rectangle specified by a Rectangle structure is contained within the visible clip region of this Graphics.
public bool IsVisible(Rectangle rect)
Parameter | Type | Description |
---|---|---|
rect | Rectangle | Rectangle structure to test for visibility. |
Return Value
true
if the rectangle specified by the rect parameter is contained within the visible clip region of this Graphics; otherwise, false
.
See Also
- struct Rectangle
- class Graphics
- namespace System.Drawing
- assembly Aspose.Drawing
IsVisible(float, float, float, float)
Indicates whether the rectangle specified by a pair of coordinates, a width, and a height is contained within the visible clip region of this Graphics.
public bool IsVisible(float x, float y, float width, float height)
Parameter | Type | Description |
---|---|---|
x | Single | The x-coordinate of the upper-left corner of the rectangle to test for visibility. |
y | Single | The y-coordinate of the upper-left corner of the rectangle to test for visibility. |
width | Single | Width of the rectangle to test for visibility. |
height | Single | Height of the rectangle to test for visibility. |
Return Value
true
if the rectangle defined by the x, y, width, and height parameters is contained within the visible clip region of this Graphics; otherwise, false
.
See Also
- class Graphics
- namespace System.Drawing
- assembly Aspose.Drawing
IsVisible(RectangleF)
Indicates whether the rectangle specified by a RectangleF structure is contained within the visible clip region of this Graphics.
public bool IsVisible(RectangleF rect)
Parameter | Type | Description |
---|---|---|
rect | RectangleF | RectangleF structure to test for visibility. |
Return Value
true
if the rectangle specified by the rect parameter is contained within the visible clip region of this Graphics; otherwise, false
.
See Also
- struct RectangleF
- class Graphics
- namespace System.Drawing
- assembly Aspose.Drawing
IsVisible(int, int)
Indicates whether the point specified by a pair of coordinates is contained within the visible clip region of this Graphics.
public bool IsVisible(int x, int y)
Parameter | Type | Description |
---|---|---|
x | Int32 | The x-coordinate of the point to test for visibility. |
y | Int32 | The y-coordinate of the point to test for visibility. |
Return Value
true
if the point defined by the x and y parameters is contained within the visible clip region of this Graphics; otherwise, false
.
See Also
- class Graphics
- namespace System.Drawing
- assembly Aspose.Drawing
IsVisible(Point)
Indicates whether the specified Point structure is contained within the visible clip region of this Graphics.
public bool IsVisible(Point point)
Parameter | Type | Description |
---|---|---|
point | Point | Point structure to test for visibility. |
Return Value
true
if the point is contained within the visible clip region of this Graphics; otherwise, false
.
See Also
- struct Point
- class Graphics
- namespace System.Drawing
- assembly Aspose.Drawing
IsVisible(float, float)
Indicates whether the point specified by a pair of coordinates is contained within the visible clip region of this Graphics.
public bool IsVisible(float x, float y)
Parameter | Type | Description |
---|---|---|
x | Single | The x-coordinate of the point to test for visibility. |
y | Single | The y-coordinate of the point to test for visibility. |
Return Value
true
if the point defined by the x and y parameters is contained within the visible clip region of this Graphics; otherwise, false
.
See Also
- class Graphics
- namespace System.Drawing
- assembly Aspose.Drawing