GraphicsPath.IsVisible 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
指出指定的點是否包含在這個 GraphicsPath中。
多載
IsVisible(Point) |
指出指定的點是否包含在這個 GraphicsPath中。 |
IsVisible(PointF) |
指出指定的點是否包含在這個 GraphicsPath中。 |
IsVisible(Point, Graphics) |
指出指定的點是否包含在這個 GraphicsPath中。 |
IsVisible(PointF, Graphics) |
指出指定的點是否包含在這個 GraphicsPath中。 |
IsVisible(Int32, Int32) |
指出指定的點是否包含在這個 GraphicsPath中。 |
IsVisible(Single, Single) |
指出指定的點是否包含在這個 GraphicsPath中。 |
IsVisible(Int32, Int32, Graphics) |
使用指定的 Graphics,指出指定的點是否包含在這個 GraphicsPath中。 |
IsVisible(Single, Single, Graphics) |
指出指定點是否包含在指定之 Graphics的可見剪輯區域中的這個 GraphicsPath 中。 |
IsVisible(Point)
指出指定的點是否包含在這個 GraphicsPath中。
public:
bool IsVisible(System::Drawing::Point point);
public bool IsVisible (System.Drawing.Point point);
member this.IsVisible : System.Drawing.Point -> bool
Public Function IsVisible (point As Point) As Boolean
參數
傳回
如果指定的點包含在這個 GraphicsPath內,這個方法會傳回 true
;否則,false
。
範例
如需範例,請參閱 GraphicsPath.IsVisible Method (Int32, Int32, Graphics)
。
適用於
IsVisible(PointF)
指出指定的點是否包含在這個 GraphicsPath中。
public:
bool IsVisible(System::Drawing::PointF point);
public bool IsVisible (System.Drawing.PointF point);
member this.IsVisible : System.Drawing.PointF -> bool
Public Function IsVisible (point As PointF) As Boolean
參數
傳回
如果指定的點包含在這個 GraphicsPath內,這個方法會傳回 true
;否則,false
。
範例
如需範例,請參閱 IsVisible(Int32, Int32, Graphics)。
適用於
IsVisible(Point, Graphics)
指出指定的點是否包含在這個 GraphicsPath中。
public:
bool IsVisible(System::Drawing::Point pt, System::Drawing::Graphics ^ graphics);
public bool IsVisible (System.Drawing.Point pt, System.Drawing.Graphics? graphics);
public bool IsVisible (System.Drawing.Point pt, System.Drawing.Graphics graphics);
member this.IsVisible : System.Drawing.Point * System.Drawing.Graphics -> bool
Public Function IsVisible (pt As Point, graphics As Graphics) As Boolean
參數
傳回
如果指定的點包含在這個 GraphicsPath內,這個方法會傳回 true
;否則,false
。
範例
如需範例,請參閱 GraphicsPath.IsVisible Method (Int32, Int32, Graphics)
。
備註
要測試之點的座標會以世界座標來指定。 測試可見度之前,會暫時套用 graphics
參數的轉換矩陣。
適用於
IsVisible(PointF, Graphics)
指出指定的點是否包含在這個 GraphicsPath中。
public:
bool IsVisible(System::Drawing::PointF pt, System::Drawing::Graphics ^ graphics);
public bool IsVisible (System.Drawing.PointF pt, System.Drawing.Graphics? graphics);
public bool IsVisible (System.Drawing.PointF pt, System.Drawing.Graphics graphics);
member this.IsVisible : System.Drawing.PointF * System.Drawing.Graphics -> bool
Public Function IsVisible (pt As PointF, graphics As Graphics) As Boolean
參數
傳回
如果指定點包含在此內,這個方法會傳回 true
;否則,false
。
範例
如需範例,請參閱 IsVisible(Int32, Int32, Graphics)。
備註
要測試之點的座標會以世界座標來指定。 測試可見度之前,會暫時套用 graphics
參數的轉換矩陣。
適用於
IsVisible(Int32, Int32)
指出指定的點是否包含在這個 GraphicsPath中。
public:
bool IsVisible(int x, int y);
public bool IsVisible (int x, int y);
member this.IsVisible : int * int -> bool
Public Function IsVisible (x As Integer, y As Integer) As Boolean
參數
- x
- Int32
要測試之點的 X 座標。
- y
- Int32
要測試之點的 Y 座標。
傳回
如果指定的點包含在這個 GraphicsPath內,這個方法會傳回 true
;否則,false
。
範例
如需範例,請參閱 IsVisible(Int32, Int32, Graphics)。
適用於
IsVisible(Single, Single)
指出指定的點是否包含在這個 GraphicsPath中。
public:
bool IsVisible(float x, float y);
public bool IsVisible (float x, float y);
member this.IsVisible : single * single -> bool
Public Function IsVisible (x As Single, y As Single) As Boolean
參數
- x
- Single
要測試之點的 X 座標。
- y
- Single
要測試之點的 Y 座標。
傳回
如果指定的點包含在這個 GraphicsPath內,這個方法會傳回 true
;否則,false
。
範例
如需範例,請參閱 IsVisible(Int32, Int32, Graphics)。
適用於
IsVisible(Int32, Int32, Graphics)
使用指定的 Graphics,指出指定的點是否包含在這個 GraphicsPath中。
public:
bool IsVisible(int x, int y, System::Drawing::Graphics ^ graphics);
public bool IsVisible (int x, int y, System.Drawing.Graphics? graphics);
public bool IsVisible (int x, int y, System.Drawing.Graphics graphics);
member this.IsVisible : int * int * System.Drawing.Graphics -> bool
Public Function IsVisible (x As Integer, y As Integer, graphics As Graphics) As Boolean
參數
- x
- Int32
要測試之點的 X 座標。
- y
- Int32
要測試之點的 Y 座標。
傳回
如果指定的點包含在這個 GraphicsPath內,這個方法會傳回 true
;否則,false
。
範例
下列程式代碼範例的設計目的是要與 Windows Forms 搭配使用,而且需要 PaintEventArgse
OnPaint 事件物件。 程式代碼會執行下列動作:
建立路徑,並將省略號新增至路徑。
測試指定的點是否包含在路徑內。
在對話框中顯示結果。
private:
void IsVisibleExample( PaintEventArgs^ e )
{
// Create a path and add an ellipse.
GraphicsPath^ myPath = gcnew GraphicsPath;
myPath->AddEllipse( 0, 0, 100, 100 );
// Test the visibility of point (50, 50).
bool visible = myPath->IsVisible( 50, 50, e->Graphics );
// Show the result.
MessageBox::Show( visible.ToString() );
}
private void IsVisibleExample(PaintEventArgs e)
{
// Create a path and add an ellipse.
GraphicsPath myPath = new GraphicsPath();
myPath.AddEllipse(0, 0, 100, 100);
// Test the visibility of point (50, 50).
bool visible = myPath.IsVisible(50, 50, e.Graphics);
// Show the result.
MessageBox.Show(visible.ToString());
}
Public Sub IsVisibleExample(ByVal e As PaintEventArgs)
Dim myPath As New GraphicsPath
myPath.AddEllipse(0, 0, 100, 100)
Dim visible As Boolean = myPath.IsVisible(50, 50, e.Graphics)
MessageBox.Show(visible.ToString())
End Sub
備註
要測試之點的座標會以世界座標來指定。 在測試可見性之前,會暫時套用 graphics
的轉換矩陣。
適用於
IsVisible(Single, Single, Graphics)
指出指定點是否包含在指定之 Graphics的可見剪輯區域中的這個 GraphicsPath 中。
public:
bool IsVisible(float x, float y, System::Drawing::Graphics ^ graphics);
public bool IsVisible (float x, float y, System.Drawing.Graphics? graphics);
public bool IsVisible (float x, float y, System.Drawing.Graphics graphics);
member this.IsVisible : single * single * System.Drawing.Graphics -> bool
Public Function IsVisible (x As Single, y As Single, graphics As Graphics) As Boolean
參數
- x
- Single
要測試之點的 X 座標。
- y
- Single
要測試之點的 Y 座標。
傳回
如果指定的點包含在這個 GraphicsPath內,這個方法會傳回 true
;否則,false
。
範例
如需範例,請參閱 IsVisible(Int32, Int32, Graphics)。
備註
要測試之點的座標會以世界座標來指定。 測試可見度之前,會暫時套用 graphics
參數的轉換矩陣。