ASPxClientProgressBar.SetMaximum(max) Method
Sets the maximum range value of the progress bar.
Declaration
SetMaximum(
max: number
): void
Parameters
Name | Type | Description |
---|---|---|
max | number | The maximum value of the progress bar range. |
Remarks
Use the SetMaximum method to specify the maximum range of the progress bar on the client side. Use the ASPxClientProgressBar.SetMinimum method to specify the minimum range. You can specify both the (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