UltraProgressBar¶
Infragistics UltraProgressBar.
UI element class: Infragistics.Win.UltraWinProgressBar.UltraProgressBar
Extends ManagedObject
Extends SeSSimulatedObject
Behavior Pattern: UltraProgressBarBehavior
Property Summary¶
Property | Description | Getter | Setter |
---|---|---|---|
MaxValue | Maximum value of the object or 'false' if value can't be read. | GetMaxValue | SetMaxValue |
MinValue | Minimum value of the object or 'false' if value can't be read. | GetMinValue | SetMinValue |
Value | Value of the object. | GetValue | SetValue |
Action Summary¶
Action | Description |
---|---|
DoSetValue | Sets value of this object. |
Property Detail¶
MaxValue¶
Maximum value of the object or 'false' if value can't be read.
Type: number|boolean
Accessors: GetMaxValue, SetMaxValue
value = SeS('SomeUltraProgressBar').GetMaxValue()
SeS('SomeUltraProgressBar').SetMaxValue(value)
MinValue¶
Minimum value of the object or 'false' if value can't be read.
Type: number|boolean
Accessors: GetMinValue, SetMinValue
value = SeS('SomeUltraProgressBar').GetMinValue()
SeS('SomeUltraProgressBar').SetMinValue(value)
Value¶
Value of the object.
Type: number
Accessors: GetValue, SetValue
value = SeS('SomeUltraProgressBar').GetValue()
SeS('SomeUltraProgressBar').SetValue(value)
Action Detail¶
DoSetValue¶
Sets value of this object.
SeS('SomeUltraProgressBar').DoSetValue(value)
Parameters:
Name | Type | Description |
---|---|---|
value | number | Value to set. |
Returns:
boolean: 'true' if successful, 'false' otherwise.