Size3D.IsEmpty Propriedade
Definição
Importante
Algumas informações se referem a produtos de pré-lançamento que podem ser substancialmente modificados antes do lançamento. A Microsoft não oferece garantias, expressas ou implícitas, das informações aqui fornecidas.
Obtém um valor que indica se esta estrutura Size3D está vazia.
public:
property bool IsEmpty { bool get(); };
public bool IsEmpty { get; }
member this.IsEmpty : bool
Public ReadOnly Property IsEmpty As Boolean
Valor da propriedade
true
se a Size3D estrutura estiver vazia; caso contrário, false
. O padrão é false
.
Exemplos
O exemplo a seguir mostra como verificar se uma Size3D estrutura está vazia.
// 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)
Comentários
Uma Size3D estrutura com X, Ye Z valores definidos como 0 não está vazia. Uma estrutura vazia Size3D tem X, Ye Z valores definidos como infinito negativo. Essa é a única vez que uma Size3D estrutura pode ter valores negativos.