GraphicsPath.IsVisible

IsVisible(float, float)

表示指定点是否包含在此GraphicsPath .

public bool IsVisible(float x, float y)
范围类型描述
xSingle要测试的点的 x 坐标。
ySingle要测试的点的 y 坐标。

返回值

如果指定点包含在此方法中,则此方法返回 trueGraphicsPath;否则为 false.

也可以看看


IsVisible(PointF)

表示指定点是否包含在此GraphicsPath .

public bool IsVisible(PointF point)
范围类型描述
pointPointFAPointF表示要测试的点。

返回值

如果指定点包含在此方法中,则此方法返回 trueGraphicsPath;否则为 false.

也可以看看


IsVisible(int, int)

表示指定点是否包含在此GraphicsPath .

public bool IsVisible(int x, int y)
范围类型描述
xInt32要测试的点的 x 坐标。
yInt32要测试的点的 y 坐标。

返回值

如果指定点包含在此方法中,则此方法返回 trueGraphicsPath;否则为 false.

也可以看看


IsVisible(Point)

表示指定点是否包含在此GraphicsPath .

public bool IsVisible(Point point)
范围类型描述
pointPointAPoint表示要测试的点。

返回值

如果指定点包含在此方法中,则此方法返回 trueGraphicsPath;否则为 false.

也可以看看


IsVisible(float, float, Graphics)

表示指定点是否包含在此GraphicsPath在指定的可见剪辑区域Graphics .

public bool IsVisible(float x, float y, Graphics graphics)
范围类型描述
xSingle要测试的点的 x 坐标。
ySingle要测试的点的 y 坐标。
graphicsGraphicsGraphics测试可见性。

返回值

如果指定点包含在此方法中,则此方法返回 trueGraphicsPath;否则为 false.

也可以看看


IsVisible(PointF, Graphics)

表示指定点是否包含在此GraphicsPath .

public bool IsVisible(PointF pt, Graphics graphics)
范围类型描述
ptPointFAPointF表示要测试的点。
graphicsGraphicsGraphics测试可见性。

返回值

如果指定点包含在此方法中,则此方法返回 true;否则为 false.

也可以看看


IsVisible(int, int, Graphics)

表示指定点是否包含在此GraphicsPath , 使用指定的Graphics .

public bool IsVisible(int x, int y, Graphics graphics)
范围类型描述
xInt32要测试的点的 x 坐标。
yInt32要测试的点的 y 坐标。
graphicsGraphicsGraphics测试可见性。

返回值

如果指定点包含在此方法中,则此方法返回 trueGraphicsPath;否则为 false.

也可以看看


IsVisible(Point, Graphics)

表示指定点是否包含在此GraphicsPath .

public bool IsVisible(Point pt, Graphics graphics)
范围类型描述
ptPointAPoint表示要测试的点。
graphicsGraphicsGraphics测试可见性。

返回值

如果指定点包含在此方法中,则此方法返回 trueGraphicsPath;否则为 false.

也可以看看