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

WithConcurrent() public method

public WithConcurrent ( Action callback, double start = 0.0f, double end = 1.0f, double>.Func easing = null, double beginAt = 0.0f, double finishAt = 1.0f ) : Animation
callback Action
start double
end double
easing double>.Func
beginAt double
finishAt double
return Animation
        public Animation WithConcurrent(Action<double> callback, double start = 0.0f, double end = 1.0f, Func<double, double> easing = null, double beginAt = 0.0f, double finishAt = 1.0f)
        {
            Animation child = new Animation (callback, start, end, easing);
            child.beginAt = beginAt;
            child.finishAt = finishAt;
            children.Add (child);
            return this;
        }

Same methods

Animation::WithConcurrent ( Animation animation, double beginAt = 0.0f, double finishAt = 1.0f ) : Animation