ProgressBar.SecondaryProgress 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.
Get the progress bar's current level of secondary progress. -or- Set the current secondary progress to the specified value.
public virtual int SecondaryProgress { [Android.Runtime.Register("getSecondaryProgress", "()I", "GetGetSecondaryProgressHandler")] get; [Android.Runtime.Register("setSecondaryProgress", "(I)V", "GetSetSecondaryProgress_IHandler")] set; }
[<get: Android.Runtime.Register("getSecondaryProgress", "()I", "GetGetSecondaryProgressHandler")>]
[<set: Android.Runtime.Register("setSecondaryProgress", "(I)V", "GetSetSecondaryProgress_IHandler")>]
member this.SecondaryProgress : int with get, set
Property Value
the current secondary progress, between #getMin()
and #getMax()
- Attributes
Remarks
Property getter documentation:
Get the progress bar's current level of secondary progress. Return 0 when the progress bar is in indeterminate mode.
Java documentation for android.widget.ProgressBar.getSecondaryProgress()
.
Property setter documentation:
Set the current secondary progress to the specified value. Does not do anything if the progress bar is in indeterminate mode.
Java documentation for android.widget.ProgressBar.setSecondaryProgress(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.