Size3D.Empty Property

Definition

Gets a value that represents an empty Size3D structure.

public:
 static property System::Windows::Media::Media3D::Size3D Empty { System::Windows::Media::Media3D::Size3D get(); };
public static System.Windows.Media.Media3D.Size3D Empty { get; }
static member Empty : System.Windows.Media.Media3D.Size3D
Public Shared ReadOnly Property Empty As Size3D

Property Value

An empty instance of a Size3D structure.

Examples

The following example shows how to make a Size3D structure empty.

// Gets an empty Size3D structure
Size3D size1 = new Size3D(2, 4, 6);

size1 = Size3D.Empty;
// size1 is now empty

// Displaying Results
syntaxString = "size1 = Size3D.Empty;";
resultType = "Size3D";
operationString = "Getting an empty Size3D structure";
ShowResults(size1.ToString(), syntaxString, resultType, operationString);
' Gets an empty Size3D structure
Dim size1 As New Size3D(2, 4, 6)

size1 = Size3D.Empty
' size1 is now empty



' Displaying Results
syntaxString = "size1 = Size3D.Empty"
resultType = "Size3D"
operationString = "Getting an empty Size3D structure"
ShowResults(size1.ToString(), syntaxString, resultType, operationString)

Remarks

A Size3D structure with X, Y, and Z values set to 0 is not empty. An empty Size3D structure has X, Y, and Z values set to negative infinity. This is the only time a Size3D structure can have negative values.

Applies to