共用方式為


AnalysisRegionBase.IsEmpty 屬性

取得值,這個值表示 AnalysisRegionBase 是否表示空白區域。

命名空間:  System.Windows.Ink.AnalysisCore
組件:  IACore (在 IACore.dll 中)

語法

'宣告
Public ReadOnly Property IsEmpty As Boolean
'用途
Dim instance As AnalysisRegionBase
Dim value As Boolean

value = instance.IsEmpty
public bool IsEmpty { get; }
public:
property bool IsEmpty {
    bool get ();
}
/** @property */
public boolean get_IsEmpty()
public function get IsEmpty () : 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.IsInfinite

AnalysisRegionBase.MakeEmpty

AnalysisRegionBase.MakeInfinite