次の方法で共有


AnalysisRegionBase.IsInfinite プロパティ

AnalysisRegionBase が無限領域を表すかどうかを示す値を取得します。

名前空間 :  System.Windows.Ink.AnalysisCore
アセンブリ :  IACore (IACore.dll 内)

構文

'宣言
Public ReadOnly Property IsInfinite As Boolean
'使用
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

プロパティ値

型 : System.Boolean
表された領域が無限の場合は true。それ以外の場合は false。

次の例では、AnalysisRegionBase、theFirstAnalysisRegionBase によって表される領域のエクステントをテストします。

' 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.
            }

プラットフォーム

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 名前空間

AnalysisRegionBase.IsEmpty

AnalysisRegionBase.MakeEmpty

AnalysisRegionBase.MakeInfinite