TelerikRadSpinEditor¶
Telerik RadSpinEditor.
UI element class: Telerik.WinControls.UI.RadSpinEditor
Extends ManagedObject
Extends SeSSimulatedObject
Behavior Pattern: TelerikSpinEditBehavior
Property Summary¶
Property | Description | Getter | Setter |
---|---|---|---|
Increment | Number value that means how much is added or removed when user clicks up or down. | GetIncrement | SetIncrement |
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 |
Text | Text of the object, 'false' if text can not be read. | GetText | SetText |
Value | Value of the object. | GetValue | SetValue |
Action Summary¶
Action | Description |
---|---|
DoDown | Decrements the value of an object |
DoSetText | Sets text value of this object. |
DoUp | Increments the Value of an object. |
Property Detail¶
Increment¶
Number value that means how much is added or removed when user clicks up or down.
Type: number
Accessors: GetIncrement, SetIncrement
value = SeS('SomeTelerikRadSpinEditor').GetIncrement()
SeS('SomeTelerikRadSpinEditor').SetIncrement(value)
MaxValue¶
Maximum value of the object or 'false' if value can't be read.
Type: number|boolean
Accessors: GetMaxValue, SetMaxValue
value = SeS('SomeTelerikRadSpinEditor').GetMaxValue()
SeS('SomeTelerikRadSpinEditor').SetMaxValue(value)
MinValue¶
Minimum value of the object or 'false' if value can't be read.
Type: number|boolean
Accessors: GetMinValue, SetMinValue
value = SeS('SomeTelerikRadSpinEditor').GetMinValue()
SeS('SomeTelerikRadSpinEditor').SetMinValue(value)
Text¶
Text of the object, 'false' if text can not be read.
Type: string
Accessors: GetText, SetText
value = SeS('SomeTelerikRadSpinEditor').GetText()
SeS('SomeTelerikRadSpinEditor').SetText(value)
Value¶
Value of the object.
Type: number
Accessors: GetValue, SetValue
value = SeS('SomeTelerikRadSpinEditor').GetValue()
SeS('SomeTelerikRadSpinEditor').SetValue(value)
Action Detail¶
DoDown¶
Decrements the value of an object
SeS('SomeTelerikRadSpinEditor').DoDown()
Returns:
boolean: 'true' if success, 'false' otherwise.
DoSetText¶
Sets text value of this object.
SeS('SomeTelerikRadSpinEditor').DoSetText(val)
Parameters:
Name | Type | Description |
---|---|---|
val | string | Text value. |
Returns:
boolean: 'true' if success, 'false' otherwise.
DoUp¶
Increments the Value of an object.
SeS('SomeTelerikRadSpinEditor').DoUp()
Returns:
boolean: 'true' if success, 'false' otherwise.