public static IAnimationStoryboard CreateStoryboard(this IAnimationManager manager)
        {
            IAnimationStoryboard storyboard;

            manager.TryCreateStoryboard(out storyboard).ThrowIfError();
            return(storyboard);
        }