UIASlider¶
UIAutomation UIASlider.
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('SomeUIASlider').GetMaxValue()
SeS('SomeUIASlider').SetMaxValue()
MinValue¶
Minimum value of the object or 'false' if value can't be read.
Type: number|boolean
Accessors: GetMinValue, SetMinValue
value = SeS('SomeUIASlider').GetMinValue()
SeS('SomeUIASlider').SetMinValue()
Value¶
Value of the object.
Type: number
Accessors: GetValue, SetValue
value = SeS('SomeUIASlider').GetValue()
SeS('SomeUIASlider').SetValue(newvalue)
Action Detail¶
DoSetValue¶
Sets the value of current object.
SeS('SomeUIASlider').DoSetValue(val)
Parameters:
Name | Type | Description |
---|---|---|
val | number | Value to set |
Returns:
boolean: 'true' if successful, 'false' otherwise