MatrixTransform3D.Value 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 matrix representation of the 3-D transformation.
public:
virtual property System::Windows::Media::Media3D::Matrix3D Value { System::Windows::Media::Media3D::Matrix3D get(); };
public override System.Windows.Media.Media3D.Matrix3D Value { get; }
member this.Value : System.Windows.Media.Media3D.Matrix3D
Public Overrides ReadOnly Property Value As Matrix3D
Property Value
A Matrix3D representation of the 3-D transformation.
Examples
rotationMatrix3D = myRotateTransform3D.Value;
M11Text.Text = rotationMatrix3D.M11.ToString();
rotationMatrix3D = myRotateTransform3D.Value
M11Text.Text = rotationMatrix3D.M11.ToString()
Remarks
The Value property inherits from the Transform3D class. The Value property enables you to convert any Transform3D object into a Matrix3D object. Because the MatrixTransform class is defined by using a Matrix3D, the Matrix and Value properties always return the same value. The MatrixTransform3D class exposes the Matrix property to enable write access.