BootstrapProgressBar Class
# Declaration
TypeScript
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
# Returns
# getDisplayText Method
# Declaration
# Returns
# getEnabled Method
# Declaration
# Returns
# getMaximum Method
# Declaration
# Returns
# getMinimum Method
# Declaration
# Returns
# getPercent Method
# Declaration
# Returns
# getPosition Method
# Declaration
# Returns
# getValue Method
# Declaration
# Returns
# off<K> Method
# Declaration
TypeScript
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
TypeScript
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
TypeScript
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
TypeScript
setCaption(
caption: string
): void
# Parameters
# setCustomDisplayFormat(text) Method
# Declaration
TypeScript
setCustomDisplayFormat(
text: string
): void
# Parameters
# setEnabled(value) Method
# Declaration
TypeScript
setEnabled(
value: boolean
): void
# Parameters
# setMaximum(max) Method
# Declaration
TypeScript
setMaximum(
max: number
): void
# Parameters
# setMinimum(min) Method
# Declaration
TypeScript
setMinimum(
min: number
): void
# Parameters
# setMinMaxValues(minValue, maxValue) Method
# Declaration
TypeScript
setMinMaxValues(
minValue: number ,
maxValue: number
): void
# Parameters
Name
Type
minValue
number
maxValue
number
# setPosition(position) Method
# Declaration
TypeScript
setPosition(
position: number
): void
# Parameters
Name
Type
position
number
# setValue(value) Method
# Declaration
TypeScript
setValue(
value: any
): void
# Parameters