Size3D.Empty Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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
Collaborate with us on GitHub
The source for this content can be found on GitHub, where you can also create and review issues and pull requests. For more information, see our contributor guide.