AnalysisRegion.IsInfinite 속성
업데이트: 2007년 11월
AnalysisRegion이 무한 영역을 나타내는지 여부를 나타내는 값을 가져옵니다.
네임스페이스: Microsoft.Ink
어셈블리: Microsoft.Ink.Analysis(Microsoft.Ink.Analysis.dll)
구문
‘선언
Public ReadOnly Property IsInfinite As Boolean
‘사용 방법
Dim instance As AnalysisRegion
Dim value As Boolean
value = instance.IsInfinite
public bool IsInfinite { get; }
public:
property bool IsInfinite {
bool get ();
}
/** @property */
public boolean get_IsInfinite()
public function get IsInfinite () : boolean
속성 값
형식: System.Boolean
표시된 영역이 무한하면 true이고, 그렇지 않으면 false입니다.
예제
다음 예제에서는 AnalysisRegion인 theFirstAnalysisRegion이 나타내는 영역의 범위를 테스트합니다.
' Check whether the AnalysisRegion is empty, infinite, or neither.
If theFirstAnalysisRegion.IsEmpty Then
' Insert code here for an empty AnalysisRegionBase.
ElseIf theFirstAnalysisRegion.IsInfinite Then
' Insert code here for an infinite AnalysisRegionBase.
Else
' Insert code here for a non-empty, finite AnalysisRegionBase.
End If
// Check whether the AnalysisRegionBase is empty, infinite, or neither.
if (theFirstAnalysisRegion.IsEmpty)
{
// Insert code here for an empty AnalysisRegionBase.
}
else if (theFirstAnalysisRegion.IsInfinite)
{
// Insert code here for an infinite AnalysisRegionBase.
}
else
{
// Insert code here for a non-empty, finite AnalysisRegionBase.
}
플랫폼
Windows Vista
.NET Framework 및 .NET Compact Framework에서 모든 플랫폼의 전체 버전을 지원하지는 않습니다. 지원되는 버전의 목록을 보려면 .NET Framework 시스템 요구 사항을 참조하십시오.
버전 정보
.NET Framework
3.0에서 지원