Visual.TransformMatrix 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.
The transformation matrix to apply to the visual. Animatable.
public:
property float4x4 TransformMatrix { float4x4 get(); void set(float4x4 value); };
float4x4 TransformMatrix();
void TransformMatrix(float4x4 value);
public Matrix4x4 TransformMatrix { get; set; }
var matrix4x4 = visual.transformMatrix;
visual.transformMatrix = matrix4x4;
Public Property TransformMatrix As Matrix4x4
Property Value
The transformation matrix to apply to the visual.
Remarks
This property can be animated. Call CompositionObject.StartAnimation to associate it with a CompositionAnimation.