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