ChildSiteLink.LocalToParentTransformMatrix 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 or sets the transform matrix from the placement Visual to the root Visual of the parent ContentIsland.
public:
property float4x4 LocalToParentTransformMatrix { float4x4 get(); void set(float4x4 value); };
float4x4 LocalToParentTransformMatrix();
void LocalToParentTransformMatrix(float4x4 value);
public Matrix4x4 LocalToParentTransformMatrix { get; set; }
var matrix4x4 = childSiteLink.localToParentTransformMatrix;
childSiteLink.localToParentTransformMatrix = matrix4x4;
Public Property LocalToParentTransformMatrix As Matrix4x4
Property Value
The transform matrix from the placement Visual to the root Visual of the parent ContentIsland.
Remarks
This property must be kept in sync with the transform matrix from the placement Visual to the root Visual of the parent ContentIsland, otherwise the conversions performed by the ContentCoordinateConverter may not be accurate.
This property must be set to a two-dimensional affine transform matrix that is invertible, otherwise E_INVALIDARG is returned.