MatrixTransform3D.Value Propriedade

Definição

Obtém uma representação matricial da transformação 3D.

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

Valor de Propriedade

Uma Matrix3D representação da transformação 3D.

Exemplos

rotationMatrix3D = myRotateTransform3D.Value;
M11Text.Text = rotationMatrix3D.M11.ToString();
rotationMatrix3D = myRotateTransform3D.Value
M11Text.Text = rotationMatrix3D.M11.ToString()

Observações

A Value propriedade herda da Transform3D classe. A Value propriedade permite-lhe converter qualquer Transform3D objeto num Matrix3D objeto. Como a MatrixTransform classe é definida usando uma Matrix3D, as Matrix propriedades e Value retornam sempre o mesmo valor. A classe MatrixTransform3D expõe a Matrix propriedade para permitir o acesso de escrita.

Aplica-se a