UltraNumericEditor¶
Infragistics UltraNumericEditor.
UI element class: Infragistics.Win.UltraWinEditors.UltraNumericEditor
Extends ManagedObject
Extends SeSSimulatedObject
Behavior Pattern: UltraNumericEditBehavior
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 | 
| Text | Text of the object, 'false' if text can not be read. | GetText | SetText | 
Action Summary¶
| Action | Description | 
|---|---|
| DoSetText | Sets text value of this 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('SomeUltraNumericEditor').GetMaxValue()
SeS('SomeUltraNumericEditor').SetMaxValue(value)
MinValue¶
Minimum value of the object or 'false' if value can't be read.
Type: number|boolean
Accessors: GetMinValue, SetMinValue
value = SeS('SomeUltraNumericEditor').GetMinValue()
SeS('SomeUltraNumericEditor').SetMinValue(value)
Text¶
Text of the object, 'false' if text can not be read.
Type: string
Accessors: GetText, SetText
value = SeS('SomeUltraNumericEditor').GetText()
SeS('SomeUltraNumericEditor').SetText(value)
Action Detail¶
DoSetText¶
Sets text value of this object.
SeS('SomeUltraNumericEditor').DoSetText(val)
Parameters:
| Name | Type | Description | 
|---|---|---|
| val | string | Text value. | 
Returns:
boolean: 'true' if success, 'false' otherwise.