CGRect.Contains 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
多載
Contains(CGPoint)
public bool Contains (CoreGraphics.CGPoint point);
member this.Contains : CoreGraphics.CGPoint -> bool
參數
傳回
如果 所 point
表示的點包含在這個 CGRect 結構中,則這個方法會傳回 true;否則傳回 false。
備註
必須正規化包含的矩形,這個方法才能傳回精確的結果。
Contains(CGRect)
判斷由 rect
表示的矩形區域是否完全包含在這個 CGRect 結構中。
public bool Contains (CoreGraphics.CGRect rect);
member this.Contains : CoreGraphics.CGRect -> bool
參數
傳回
如果 所 rect
表示的矩形區域完全包含在這個 CGRect 結構中,則這個方法會傳回 true;否則傳回 false。
備註
必須正規化包含的矩形,這個方法才能傳回精確的結果。
Contains(Double, Double)
true
如果點 [ x
, y
] 位於矩形內。
public bool Contains (double x, double y);
member this.Contains : double * double -> bool
參數
傳回
Contains(nfloat, nfloat)
public bool Contains (nfloat x, nfloat y);
member this.Contains : nfloat * nfloat -> bool
參數
傳回
如果 所 x
y
定義的點包含在這個 CGRect 結構中,這個方法會傳回 true;否則傳回 false。
備註
必須正規化包含的矩形,這個方法才能傳回精確的結果。
Contains(Single, Single)
public bool Contains (float x, float y);
member this.Contains : single * single -> bool
參數
傳回