ASPxClientProgressBar.SetMinimum(min) Method
Sets the minimum range value of the progress bar.
Declaration
SetMinimum(
min: number
): void
Parameters
Name | Type | Description |
---|---|---|
min | number | The minimum value of the progress bar range. |
Remarks
Use the SetMinimum method to specify the minimum range of the progress bar on the client side. Use the ASPxClientProgressBar.SetMaximum method to specify the maximum range. You can specify the both (min and max) range values at once, using the ASPxClientProgressBar.SetMinMaxValues method.
To get the minimum and maximum ranges of the progress bar on the client side, use the ASPxClientProgressBar.GetMinimum and ASPxClientProgressBar.GetMaximum properties.
See Also