ValueAnimator.StartDelay Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
The amount of time, in milliseconds, to delay starting the animation after
#start()
is called. -or- The amount of time, in milliseconds, to delay starting the animation after
#start()
is called.
public override long StartDelay { [Android.Runtime.Register("getStartDelay", "()J", "GetGetStartDelayHandler")] get; [Android.Runtime.Register("setStartDelay", "(J)V", "GetSetStartDelay_JHandler")] set; }
[<get: Android.Runtime.Register("getStartDelay", "()J", "GetGetStartDelayHandler")>]
[<set: Android.Runtime.Register("setStartDelay", "(J)V", "GetSetStartDelay_JHandler")>]
member this.StartDelay : int64 with get, set
Property Value
the number of milliseconds to delay running the animation
- Attributes
Remarks
Property getter documentation:
The amount of time, in milliseconds, to delay starting the animation after #start()
is called.
Java documentation for android.animation.ValueAnimator.getStartDelay()
.
Property setter documentation:
The amount of time, in milliseconds, to delay starting the animation after #start()
is called. Note that the start delay should always be non-negative. Any negative start delay will be clamped to 0 on N and above.
Java documentation for android.animation.ValueAnimator.setStartDelay(long)
.
Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.