Xamarin.Motion.Animation.Commit C# (CSharp) Method

Commit() public method

public Commit ( Animatable owner, string name, uint rate = 16, uint length = 250, double>.Func easing = null, bool>.Action finished = null, Func repeat = null ) : void
owner Animatable
name string
rate uint
length uint
easing double>.Func
finished bool>.Action
repeat Func
return void
        public void Commit(Animatable owner, string name, uint rate = 16, uint length = 250, 
		                    Func<double, double> easing = null, Action<double, bool> finished = null, Func<bool> repeat = null)
        {
            owner.Animate (name, this, rate, length, easing, finished, repeat);
        }