Animation.RepeatMode 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.
Defines what this animation should do when it reaches the end. -or- Defines what this animation should do when it reaches the end.
public virtual Android.Views.Animations.RepeatMode RepeatMode { [Android.Runtime.Register("getRepeatMode", "()I", "GetGetRepeatModeHandler")] get; [Android.Runtime.Register("setRepeatMode", "(I)V", "GetSetRepeatMode_IHandler")] set; }
[<get: Android.Runtime.Register("getRepeatMode", "()I", "GetGetRepeatModeHandler")>]
[<set: Android.Runtime.Register("setRepeatMode", "(I)V", "GetSetRepeatMode_IHandler")>]
member this.RepeatMode : Android.Views.Animations.RepeatMode with get, set
Property Value
either one of #REVERSE
or #RESTART
- Attributes
Remarks
Property getter documentation:
Defines what this animation should do when it reaches the end.
Java documentation for android.view.animation.Animation.getRepeatMode()
.
Property setter documentation:
Defines what this animation should do when it reaches the end. This setting is applied only when the repeat count is either greater than 0 or #INFINITE
. Defaults to #RESTART
.
Java documentation for android.view.animation.Animation.setRepeatMode(int)
.
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.