다음을 통해 공유


AnalysisRegion.GetRegionScans 메서드

업데이트: 2007년 11월

AnalysisRegion의 영역을 정의하는 사각형 배열을 반환합니다.

네임스페이스:  Microsoft.Ink
어셈블리:  Microsoft.Ink.Analysis(Microsoft.Ink.Analysis.dll)

구문

‘선언
Public Function GetRegionScans As Rectangle()
‘사용 방법
Dim instance As AnalysisRegion
Dim returnValue As Rectangle()

returnValue = instance.GetRegionScans()
public Rectangle[] GetRegionScans()
public:
array<Rectangle>^ GetRegionScans()
public Rectangle[] GetRegionScans()
public function GetRegionScans() : Rectangle[]

반환 값

형식: array<System.Drawing.Rectangle[]
AnalysisRegion 의 영역을 정의하는 사각형 배열입니다.

설명

사각형 영역은 잉크 공간 좌표에 있습니다.

반환된 사각형의 합집합은 AnalysisRegion의 영역을 나타냅니다.

예제

이 예제에서는 AnalysisRegion인 theSecondAnalysisRegion이 나타내는 영역을 가져오는 두 가지 방법을 보여 줍니다.

' Get an approximation of the AnalysisRegion as an array of rectangles.
Dim theArea As System.Drawing.Rectangle() = _
    theSecondAnalysisRegion.GetRegionScans()

' Get a Region object for the area of the AnalysisRegion.
Dim theRegion As System.Drawing.Region = theSecondAnalysisRegion.ToRegion()
            // Get the area of the AnalysisRegion as an array of rectangles.
            System.Drawing.Rectangle[] theArea =
                theSecondAnalysisRegion.GetRegionScans();

            // Get the area of the AnalysisRegion as a region.
            System.Drawing.Region theRegion = theSecondAnalysisRegion.ToRegion();

플랫폼

Windows Vista

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

버전 정보

.NET Framework

3.0에서 지원

참고 항목

참조

AnalysisRegion 클래스

AnalysisRegion 멤버

Microsoft.Ink 네임스페이스

AnalysisRegion.GetBounds

AnalysisRegion.ToRegion