RectangleF.Contains 메서드
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
지정된 점이 이 RectangleF 구조체에 들어 있는지 여부를 확인합니다.
오버로드
Contains(PointF) |
지정된 점이 이 RectangleF 구조체에 들어 있는지 여부를 확인합니다. |
Contains(RectangleF) |
|
Contains(Single, Single) |
지정된 점이 이 RectangleF 구조체에 들어 있는지 여부를 확인합니다. |
Contains(PointF)
- Source:
- RectangleF.cs
- Source:
- RectangleF.cs
- Source:
- RectangleF.cs
지정된 점이 이 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)
- Source:
- RectangleF.cs
- Source:
- RectangleF.cs
- Source:
- RectangleF.cs
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)
- Source:
- RectangleF.cs
- Source:
- RectangleF.cs
- Source:
- RectangleF.cs
지정된 점이 이 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
입니다.
적용 대상
.NET