AnalysisRegionBase.IsInfinite-Eigenschaft
Ruft einen Wert ab, der angibt, ob AnalysisRegionBase einen unendlichen Bereich darstellt.
Namespace: System.Windows.Ink.AnalysisCore
Assembly: IACore (in IACore.dll)
Syntax
'Declaration
Public ReadOnly Property IsInfinite As Boolean
'Usage
Dim instance As AnalysisRegionBase
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
Eigenschaftenwert
Typ: System.Boolean
true , wenn der dargestellte Bereich unendlich ist, andernfalls false.
Beispiele
Im folgenden Beispiel wird der Umfang des Bereichs getestet, der durch AnalysisRegionBase mit dem Namen theFirstAnalysisRegionBase dargestellt wird.
' Check whether the AnalysisRegionBase is empty, infinite, or neither.
If theFirstAnalysisRegionBase.IsEmpty Then
' Insert code here for an empty AnalysisRegionBase.
ElseIf theFirstAnalysisRegionBase.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 (theFirstAnalysisRegionBase.IsEmpty)
{
// Insert code here for an empty AnalysisRegionBase.
}
else if (theFirstAnalysisRegionBase.IsInfinite)
{
// Insert code here for an infinite AnalysisRegionBase.
}
else
{
// Insert code here for a non-empty, finite AnalysisRegionBase.
}
Plattformen
Windows Vista, Windows XP SP2, Windows Server 2003
.NET Framework und .NET Compact Framework unterstützen nicht alle Versionen sämtlicher Plattformen. Eine Liste der unterstützten Versionen finden Sie unter Systemanforderungen für .NET Framework.
Versionsinformationen
.NET Framework
Unterstützt in: 3.0