Aracılığıyla paylaş


Size3D.IsEmpty Özellik

Tanım

Bu Size3D yapının boş olup olmadığını gösteren bir değer alır.

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

Özellik Değeri

Boolean

trueSize3D yapı boşsa; değilse, false. Varsayılan değer: false.

Örnekler

Aşağıdaki örnekte, bir Size3D yapının boş olup olmadığını denetleme işlemi gösterilmektedir.

 // 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)

Açıklamalar

Size3D, ve YZ değerleri 0 olarak ayarlanmış bir yapı Xboş değildir. Boş Size3D bir yapıda X, Yve Z değerleri negatif sonsuz olarak ayarlanmıştır. Bir yapının negatif değerlere sahip olabileceği tek zaman Size3D budur.

Şunlara uygulanır

Ayrıca bkz.