Skip to content

UIAProgressBar

UIAutomation UIAProgressBar.

Extends UIAObject

Extends SeSSimulatedObject

Behavior Pattern: UIAutomationProgressBarBehavior

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 the value of current 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('SomeUIAProgressBar').GetMaxValue()

SeS('SomeUIAProgressBar').SetMaxValue()

MinValue

Minimum value of the object or 'false' if value can't be read.

Type: number|boolean

Accessors: GetMinValue, SetMinValue

value = SeS('SomeUIAProgressBar').GetMinValue()

SeS('SomeUIAProgressBar').SetMinValue()

Value

Value of the object.

Type: number

Accessors: GetValue, SetValue

value = SeS('SomeUIAProgressBar').GetValue()

SeS('SomeUIAProgressBar').SetValue(newvalue)

Action Detail

DoSetValue

Sets the value of current object.

SeS('SomeUIAProgressBar').DoSetValue(val)

Parameters:

Name Type Description
val number Value to set

Returns:

boolean: 'true' if successful, 'false' otherwise