Proprietà AnalysisRegionBase.IsEmpty
Aggiornamento: novembre 2007
Ottiene un valore che indica se l'oggetto AnalysisRegionBase rappresenta un'area vuota.
Spazio dei nomi: System.Windows.Ink.AnalysisCore
Assembly: IACore (in IACore.dll)
Sintassi
'Dichiarazione
Public ReadOnly Property IsEmpty As Boolean
'Utilizzo
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
Valore proprietà
Tipo: System.Boolean
true se l'area rappresentata è vuota; in caso contrario, false.
Esempi
Nell'esempio seguente viene testato l'ambito dell'area rappresentata da 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.
}
Piattaforme
Windows Vista, Windows XP SP2, Windows Server 2003
.NET Framework e .NET Compact Framework non supportano tutte le versioni di ciascuna piattaforma. Per un elenco delle versioni supportate, vedere Requisiti di sistema di .NET Framework.
Informazioni sulla versione
.NET Framework
Supportato in: 3.0