Size3D.IsEmpty Proprietà

Definizione

Ottiene un valore che indica se questa struttura Size3D è vuota o meno.

public:
 property bool IsEmpty { bool get(); };
public bool IsEmpty { get; }
member this.IsEmpty : bool
Public ReadOnly Property IsEmpty As Boolean

Valore della proprietà

true se la struttura Size3D è vuota; in caso contrario, false. Il valore predefinito è false.

Esempio

Nell'esempio seguente viene illustrato come verificare se una Size3D struttura è vuota.

 // Checks if a Size3D structure is empty
 // Returns Boolean

 Size3D size1 = new Size3D(0, 0, 0);
 Boolean isEmpty;

 isEmpty = size1.IsEmpty;
 // isEmpty is False 

 // Displaying Results
 syntaxString = "isEmpty = size1.IsEmpty;";
 resultType = "Boolean";
 operationString = "Checking if a Size3D structure is empty";
 ShowResults(isEmpty.ToString(), syntaxString, resultType, operationString);
' Checks if a Size3D structure is empty
' Returns Boolean

Dim size1 As New Size3D(0, 0, 0)
Dim isEmpty As Boolean

isEmpty = size1.IsEmpty
' isEmpty is False 

' Displaying Results
syntaxString = "isEmpty = size1.IsEmpty"
resultType = "Boolean"
operationString = "Checking if a Size3D structure is empty"
ShowResults(isEmpty.ToString(), syntaxString, resultType, operationString)

Commenti

Una Size3D struttura con X, Ye Z i valori impostati su 0 non sono vuoti. Una struttura vuota Size3D include X, Ye Z valori impostati su infinito negativo. Questa è l'unica volta che una Size3D struttura può avere valori negativi.

Si applica a

Vedi anche