RectangleF.Contains 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
判斷指定的點是否包含在這個 RectangleF 結構內。
多載
Contains(PointF) |
判斷指定的點是否包含在這個 RectangleF 結構內。 |
Contains(RectangleF) |
判斷由 |
Contains(Single, Single) |
判斷指定的點是否包含在這個 RectangleF 結構內。 |
Contains(PointF)
判斷指定的點是否包含在這個 RectangleF 結構內。
public:
bool Contains(System::Drawing::PointF pt);
public readonly bool Contains (System.Drawing.PointF pt);
public bool Contains (System.Drawing.PointF pt);
member this.Contains : System.Drawing.PointF -> bool
Public Function Contains (pt As PointF) As Boolean
參數
傳回
若 pt
參數所表示的點包含在這個 RectangleF 結構中,則為 true
;否則為 false
。
適用於
Contains(RectangleF)
判斷由 rect
表示的矩形區域是否完全包含在這個 RectangleF 結構中。
public:
bool Contains(System::Drawing::RectangleF rect);
public readonly bool Contains (System.Drawing.RectangleF rect);
public bool Contains (System.Drawing.RectangleF rect);
member this.Contains : System.Drawing.RectangleF -> bool
Public Function Contains (rect As RectangleF) As Boolean
參數
- rect
- RectangleF
要測試的 RectangleF。
傳回
若 rect
所表示的矩形區域完全包含在這個 RectangleF 所表示矩形區域中,則為 true
;否則為 false
。
適用於
Contains(Single, Single)
判斷指定的點是否包含在這個 RectangleF 結構內。
public:
bool Contains(float x, float y);
public readonly bool Contains (float x, float y);
public bool Contains (float x, float y);
member this.Contains : single * single -> bool
Public Function Contains (x As Single, y As Single) As Boolean
參數
- x
- Single
要測試的點的 X 座標。
- y
- Single
要測試的點的 Y 座標。
傳回
若 x
和 y
所定義的點包含在這個 RectangleF 結構中,則為 true
;否則為 false
。