-api-id | -api-type |
---|---|
M:Windows.UI.Composition.AnimationPropertyInfo.GetResolvedCompositionObject |
winrt method |
Retrieves the composition object associated with the AnimationPropertyInfo
.
The composition object associated with the AnimationPropertyInfo
.
// Create an AnimationPropertyInfo object that will hold the mapping between the custom
// animatable property and the corresponding composition object.
AnimationPropertyInfo propertyInfo = _compositor.CreateAnimationPropertyInfo();
animatableObject.PopulatePropertyInfo("CustomOffset", propertyInfo);
// Get the resolved composition object and property for "CustomOffset".
CompositionObject resolvedObject = propertyInfo.GetResolvedCompositionObject();
String resolvedProperty = propertyInfo.GetResolvedCompositionObjectProperty();