다음을 통해 공유


AnalysisRegionBase.IntersectsWith 메서드

업데이트: 2007년 11월

AnalysisRegionBase의 영역이 지정된 사각형과 교차하는지 여부를 확인합니다.

네임스페이스:  System.Windows.Ink.AnalysisCore
어셈블리:  IACore(IACore.dll)

구문

‘선언
Public Function IntersectsWith ( _
    left As Integer, _
    top As Integer, _
    right As Integer, _
    bottom As Integer _
) As Boolean
‘사용 방법
Dim instance As AnalysisRegionBase
Dim left As Integer
Dim top As Integer
Dim right As Integer
Dim bottom As Integer
Dim returnValue As Boolean

returnValue = instance.IntersectsWith(left, _
    top, right, bottom)
public bool IntersectsWith(
    int left,
    int top,
    int right,
    int bottom
)
public:
bool IntersectsWith(
    int left, 
    int top, 
    int right, 
    int bottom
)
public boolean IntersectsWith(
    int left,
    int top,
    int right,
    int bottom
)
public function IntersectsWith(
    left : int, 
    top : int, 
    right : int, 
    bottom : int
) : boolean

매개 변수

  • left
    형식: System.Int32
    잉크 공간 좌표에서 비교할 사각형의 왼쪽 경계입니다.
  • top
    형식: System.Int32
    잉크 공간 좌표에서 비교할 사각형의 위쪽 경계입니다.
  • right
    형식: System.Int32
    잉크 공간 좌표에서 비교할 사각형의 오른쪽 경계입니다.
  • bottom
    형식: System.Int32
    잉크 공간 좌표에서 비교할 사각형의 아래쪽 경계입니다.

반환 값

형식: System.Boolean
모든 매개 변수는 HIMETRIC 단위입니다.
AnalysisRegionBase 의 영역이 지정된 사각형과 교차하면 True이고, 그렇지 않으면 false입니다.

설명

비교는 잉크 공간 좌표에서 수행됩니다.

예제

다음 예제에서는 theFirstAnalysisRegionBase라는 AnalysisRegionBase가 지정된 사각형과 교차하는지 여부를 테스트합니다.

' Test for intersection between an AnalysisRegionBase and a rectangle.
If theFirstAnalysisRegionBase.IntersectsWith(50, 50, 100, 100) Then
    ' Insert code here.
End If
            // Test for intersection between an AnalysisRegionBase and a rectangle.
            if (theFirstAnalysisRegionBase.IntersectsWith(50, 50, 100, 100))
            {
                // Insert code here.
            }

플랫폼

Windows Vista, Windows XP SP2, Windows Server 2003

.NET Framework 및 .NET Compact Framework에서 모든 플랫폼의 전체 버전을 지원하지는 않습니다. 지원되는 버전의 목록을 보려면 .NET Framework 시스템 요구 사항을 참조하십시오.

버전 정보

.NET Framework

3.0에서 지원

참고 항목

참조

AnalysisRegionBase 클래스

AnalysisRegionBase 멤버

System.Windows.Ink.AnalysisCore 네임스페이스