public static IAnimationStoryboard GetStoryboardFromTag(this IAnimationManager manager, object tag)
        {
            IAnimationStoryboard storyboard;

            manager.TryGetStoryboardFromTag(tag, out storyboard).ThrowIfError();
            return(storyboard);
        }