AnalysisRegion.ToRegion 메서드
업데이트: 2007년 11월
AnalysisRegion의 영역을 Region으로 반환합니다.
네임스페이스: Microsoft.Ink
어셈블리: Microsoft.Ink.Analysis(Microsoft.Ink.Analysis.dll)
구문
‘선언
Public Function ToRegion As Region
‘사용 방법
Dim instance As AnalysisRegion
Dim returnValue As Region
returnValue = instance.ToRegion()
public Region ToRegion()
public:
Region^ ToRegion()
public Region ToRegion()
public function ToRegion() : Region
반환 값
형식: System.Drawing.Region
Region으로 반환되는 AnalysisRegion의 영역입니다.
설명
Region은 잉크 공간 좌표에 있습니다.
예제
이 예제에서는 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에서 지원