DXSpinEdit¶
DevXpress SpinEdit.
UI element class: DevExpress.XtraEditors.SpinEdit
Extends ManagedObject
Extends SeSSimulatedObject
Behavior Pattern: DXSpinEditBehavior
Property Summary¶
Property | Description | Getter | Setter |
---|---|---|---|
Increment | The value of increment for spin. | 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¶
The value of increment for spin.
Type: number
Accessors: GetIncrement, SetIncrement
value = SeS('SomeDXSpinEdit').GetIncrement()
SeS('SomeDXSpinEdit').SetIncrement(value)
MaxValue¶
Maximum value of the object or 'false' if value can't be read.
Type: number|boolean
Accessors: GetMaxValue, SetMaxValue
value = SeS('SomeDXSpinEdit').GetMaxValue()
SeS('SomeDXSpinEdit').SetMaxValue(value)
MinValue¶
Minimum value of the object or 'false' if value can't be read.
Type: number|boolean
Accessors: GetMinValue, SetMinValue
value = SeS('SomeDXSpinEdit').GetMinValue()
SeS('SomeDXSpinEdit').SetMinValue(value)
Text¶
Text of the object, 'false' if text can not be read.
Type: string
Accessors: GetText, SetText
value = SeS('SomeDXSpinEdit').GetText()
SeS('SomeDXSpinEdit').SetText(value)
Value¶
Value of the object.
Type: number
Accessors: GetValue, SetValue
value = SeS('SomeDXSpinEdit').GetValue()
SeS('SomeDXSpinEdit').SetValue(value)
Action Detail¶
DoDown¶
Decrements the Value of an object.
SeS('SomeDXSpinEdit').DoDown()
Returns:
boolean: 'true' if success, 'false' otherwise.
DoSetText¶
Sets text value of this object.
SeS('SomeDXSpinEdit').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('SomeDXSpinEdit').DoUp()
Returns:
boolean: 'true' if success, 'false' otherwise.