Click or drag to resize
CanvasSwapChainTransformMatrix Property
Specifies a transform matrix that will be applied to the swap chain upon the next present.

Namespace:  Microsoft.Graphics.Canvas
Assembly:  Microsoft.Graphics.Canvas (in Microsoft.Graphics.Canvas.dll) Version: 0.0.0.0
Syntax
C#
public Matrix3x2 TransformMatrix { get; set; }

Property Value

Type: Matrix3x2
Remarks

This matrix scales and/or translates how the swap chain appears on the display. It defaults to identity, which maps swap chain pixels 1:1 with the output.

Swap chain scaling may be used to render at a lower resolution than the physical screen.

Only scale and translation components are allowed in the matrix (no rotation, skew, etc.)

This property is not supported on objects created via CreateForCoreWindow Overload; any attempt to access it will fail.

See Also