BootstrapProgressBar Class
Declaration
class BootstrapProgressBar extends Control
IMPORTANT
Bootstrap Controls for ASP.NET Core are in maintenance mode. We don’t add new controls or develop new functionality for this product line. Our recommendation is to use the ASP.NET Core Controls suite.
Methods
getCaption Method
Declaration
getCaption(): string
Returns
getDisplayText Method
Declaration
getDisplayText(): string
Returns
getEnabled Method
Declaration
getEnabled(): boolean
Returns
getMaximum Method
Declaration
getMaximum(): number
Returns
getMinimum Method
Declaration
getMinimum(): number
Returns
getPercent Method
Declaration
getPercent(): number
Returns
getPosition Method
Declaration
getPosition(): number
Returns
getValue Method
Declaration
getValue(): any
Returns
off<K> Method
Declaration
off<K extends keyof BootstrapProgressBarEventMap>(
eventName?: K,
callback?: (this: BootstrapProgressBar,
args?: BootstrapProgressBarEventMap[K]) => void
): this
Parameters
Name |
Type |
eventName |
K |
callback |
(this: BootstrapProgressBar, args?: BootstrapProgressBarEventMap[K]) => void |
Type Parameters
Returns
on<K>(eventName, callback) Method
Declaration
on<K extends keyof BootstrapProgressBarEventMap>(
eventName: K,
callback: (this: BootstrapProgressBar,
args?: BootstrapProgressBarEventMap[K]) => void
): this
Parameters
Name |
Type |
eventName |
K |
callback |
(this: BootstrapProgressBar, args?: BootstrapProgressBarEventMap[K]) => void |
Type Parameters
Returns
once<K>(eventName, callback) Method
Declaration
once<K extends keyof BootstrapProgressBarEventMap>(
eventName: K,
callback: (this: BootstrapProgressBar,
args?: BootstrapProgressBarEventMap[K]) => void
): this
Parameters
Name |
Type |
eventName |
K |
callback |
(this: BootstrapProgressBar, args?: BootstrapProgressBarEventMap[K]) => void |
Type Parameters
Returns
setCaption(caption) Method
Declaration
setCaption(
caption: string
): void
Parameters
setCustomDisplayFormat(text) Method
Declaration
setCustomDisplayFormat(
text: string
): void
Parameters
setEnabled(value) Method
Declaration
setEnabled(
value: boolean
): void
Parameters
setMaximum(max) Method
Declaration
setMaximum(
max: number
): void
Parameters
setMinimum(min) Method
Declaration
setMinimum(
min: number
): void
Parameters
setMinMaxValues(minValue, maxValue) Method
Declaration
setMinMaxValues(
minValue: number,
maxValue: number
): void
Parameters
Name |
Type |
minValue |
number |
maxValue |
number |
setPosition(position) Method
Declaration
setPosition(
position: number
): void
Parameters
Name |
Type |
position |
number |
setValue(value) Method
Declaration
setValue(
value: any
): void
Parameters