AccidentalFish.UIKit.FluentAnimate.EaseOut C# (CSharp) 메소드

EaseOut() 공개 정적인 메소드

public static EaseOut ( double duration, System.Action action ) : IFluentAnimate
duration double
action System.Action
리턴 IFluentAnimate
        public static IFluentAnimate EaseOut(double duration, Action action)
        {
            IFluentAnimate animator = new FluentAnimate();
            animator.EaseOut(duration, action);
            return animator;
        }

Usage Example

예제 #1
0
        public static IFluentAnimate EaseOut(double duration, Action action)
        {
            IFluentAnimate animator = new FluentAnimate();

            animator.EaseOut(duration, action);
            return(animator);
        }
All Usage Examples Of AccidentalFish.UIKit.FluentAnimate::EaseOut