Skip to main content

ASPxClientProgressBar.SetMinMaxValues(minValue, maxValue) Method

Sets the minimum and maximum range values of the progress bar.

Declaration

SetMinMaxValues(
    minValue: number,
    maxValue: number
): void

Parameters

Name Type Description
minValue number

The minimum value of the progress bar range.

maxValue number

The maximum value of the progress bar range.

Remarks

Use the SetMinMaxValues method to specify the minimum and maximum ranges of the progress bar on the client side.

You can specify the range values separately, using the ASPxClientProgressBar.SetMinimum and ASPxClientProgressBar.SetMaximum methods.

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