AbsSeekBar.KeyProgressIncrement 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.
Returns the amount of progress changed via the arrow keys. -or- Sets the amount of progress changed via the arrow keys.
public virtual int KeyProgressIncrement { [Android.Runtime.Register("getKeyProgressIncrement", "()I", "GetGetKeyProgressIncrementHandler")] get; [Android.Runtime.Register("setKeyProgressIncrement", "(I)V", "GetSetKeyProgressIncrement_IHandler")] set; }
[<get: Android.Runtime.Register("getKeyProgressIncrement", "()I", "GetGetKeyProgressIncrementHandler")>]
[<set: Android.Runtime.Register("setKeyProgressIncrement", "(I)V", "GetSetKeyProgressIncrement_IHandler")>]
member this.KeyProgressIncrement : int with get, set
Property Value
The amount to increment or decrement when the user presses the arrow keys. This will be positive.
- Attributes
Remarks
Property getter documentation:
Returns the amount of progress changed via the arrow keys.
By default, this will be a value that is derived from the progress range.
Java documentation for android.widget.AbsSeekBar.getKeyProgressIncrement()
.
Property setter documentation:
Sets the amount of progress changed via the arrow keys.
Java documentation for android.widget.AbsSeekBar.setKeyProgressIncrement(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.