Telerik 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.
Accessors: GetIncrement, SetIncrement
MaxValue
Maximum value of the object or 'false' if value can't be read.
Accessors: GetMaxValue, SetMaxValue
MinValue
Minimum value of the object or 'false' if value can't be read.
Accessors: GetMinValue, SetMinValue
Text
Text of the object, 'false' if text can not be read.
Accessors: GetText, SetText
Value
Value of the object.
Accessors: GetValue, SetValue
Action Detail
DoDown()
Decrements the value of an object
Returns:
'true' if success, 'false' otherwise.
DoSetText(val)
Sets text value of this object.
Parameters:
Name
|
Type
|
Description
|
val
|
string
|
Text value.
|
Returns:
'true' if success, 'false' otherwise.
DoUp()
Increments the Value of an object.
Returns:
'true' if success, 'false' otherwise.
|