Size3D Structure
Data structure that describes the size of a three-dimensional object.
Assembly: PresentationCore (in PresentationCore.dll)
XMLNS for XAML: http://schemas.microsoft.com/winfx/2006/xaml/presentation, http://schemas.microsoft.com/netfx/2007/xaml/presentation
The Size3D type exposes the following members.
| Name | Description | |
|---|---|---|
![]() ![]() | Empty | Gets a value that represents an empty Size3D structure. |
![]() | IsEmpty | Gets a value that indicates whether this Size3D structure is empty. |
![]() | X | Gets or sets the X value of this Size3D structure. |
![]() | Y | Gets or sets the Y value of this Size3D structure. |
![]() | Z | Gets or sets the Z value of this Size3D structure. |
| Name | Description | |
|---|---|---|
![]() | Equals(Object) | Determines whether the specified object is a Size3D structure and whether the X, Y and Z properties of the specified Object are equal to the X, Y and Z properties of this Size3D structure. (Overrides ValueType::Equals(Object).) |
![]() | Equals(Size3D) | Compares two Size3D structures for equality. |
![]() ![]() | Equals(Size3D, Size3D) | Compares two Size3D structures for equality. Two Size3D structures are equal if the values of their X, Y, and Z properties are the same. |
![]() | Finalize | Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection. (Inherited from Object.) |
![]() | GetHashCode | Returns a hash code for this Size3D structure. (Overrides ValueType::GetHashCode().) |
![]() | GetType | Gets the Type of the current instance. (Inherited from Object.) |
![]() | MemberwiseClone | Creates a shallow copy of the current Object. (Inherited from Object.) |
![]() ![]() | Parse | Converts a String representation of a three-dimensional size structure into the equivalent Size3D structure. |
![]() | ToString() | Creates a String representation of this Size3D structure. (Overrides ValueType::ToString().) |
![]() | ToString(IFormatProvider) | Creates a String representation of this Size3D structure. |
| Name | Description | |
|---|---|---|
![]() ![]() | Equality | Compares two Size3D structures for equality. Two Size3D structures are equal if the values of their X, Y, and Z properties are the same. |
![]() ![]() | Explicit(Size3D to Point3D) | Converts this Size3D structure into a Point3D structure. |
![]() ![]() | Explicit(Size3D to Vector3D) | Converts this Size3D structure into a Vector3D structure. |
![]() ![]() | Inequality | Compares two Size3D structures for inequality. Two Size3D structures are not equal if the values of their X, Y and Z properties are different. |
| Name | Description | |
|---|---|---|
![]() ![]() | IFormattable::ToString | This member supports the Windows Presentation Foundation (WPF) infrastructure and is not intended to be used directly from your code. For a description of this member, see ToString. |
Size3D and Rect3D are not typically used in XAML, because no settable properties exist in the WPF 3D object model that use those types.
This example shows how to determine if two Size3D structures are equal using the Size3D static Equals method.
The following code illustrates how to check Size3D structures for equality. The Size3D structures are declared and assigned values. The Equals method is then used to determine if the two structures are equal.
private bool size3DEqualityExample() { // Checks if two Size3D structures are equal using the static Equals method. // Returns a Boolean. // Declaring Size3D structure without initializing x,y,z values Size3D size1 = new Size3D(); // Delcaring Size3D structure and initializing x,y,z values Size3D size2 = new Size3D(5, 10, 15); Boolean areEqual; // Assigning values to size1 size1.X = 2; size1.Y = 4; size1.Z = 6; // checking for equality areEqual = Size3D.Equals(size1, size2); // areEqual is False return areEqual; }
Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
