Visual.TransformMatrix Property

Definition

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

Matrix4x4 Matrix4x4

float4x4

The transformation matrix to apply to the visual.

Remarks

This property can be animated. Call CompositionObject.StartAnimation to associate it with a CompositionAnimation.

Applies to