DXComboBoxEdit¶
DevXpress ComboBoxEdit.
UI element class: DevExpress.XtraEditors.ComboBoxEdit
Extends ManagedObject
Extends SeSSimulatedObject
Behavior Pattern: DXComboBoxEditBehavior
Property Summary¶
Property | Description | Getter | Setter |
---|---|---|---|
ItemCount | Number of items. | GetItemCount | |
ItemNameByIndex | Returns item name by its index. | GetItemNameByIndex | |
SelectedIndex | Index of the selected element of the object. | GetSelectedIndex | SetSelectedIndex |
SelectedText | Text of the selected item in a single string. | GetSelectedText | SetSelectedText |
Text | Text of the selected item in a single string. | GetText | SetText |
Action Summary¶
Action | Description |
---|---|
DoSelectItem | Selects an item of this object. |
DoSetText | Sets text value of this object. |
Property Detail¶
ItemCount¶
Number of items.
Type: number
Accessors: GetItemCount
value = SeS('SomeDXComboBoxEdit').GetItemCount()
ItemNameByIndex¶
Returns item name by its index.'false' if name is not found.
Getter Parameters:
Name | Type | Description |
---|---|---|
index | number | Index of the item |
Type: string|boolean
Accessors: GetItemNameByIndex
value = SeS('SomeDXComboBoxEdit').GetItemNameByIndex(index)
SelectedIndex¶
Index of the selected element of the object.
Type: number
Accessors: GetSelectedIndex, SetSelectedIndex
value = SeS('SomeDXComboBoxEdit').GetSelectedIndex()
SeS('SomeDXComboBoxEdit').SetSelectedIndex(value)
SelectedText¶
Text of the selected item in a single string.
Type: string
Accessors: GetSelectedText, SetSelectedText
value = SeS('SomeDXComboBoxEdit').GetSelectedText()
SeS('SomeDXComboBoxEdit').SetSelectedText(value)
Text¶
Text of the selected item in a single string.
Type: string
Accessors: GetText, SetText
value = SeS('SomeDXComboBoxEdit').GetText()
SeS('SomeDXComboBoxEdit').SetText(value)
Action Detail¶
DoSelectItem¶
Selects an item of this object.
SeS('SomeDXComboBoxEdit').DoSelectItem(item)
Parameters:
Name | Type | Description |
---|---|---|
item | string | number | Item index or text value to select. |
Returns:
boolean: 'true' if success, 'false' otherwise.
DoSetText¶
Sets text value of this object.
SeS('SomeDXComboBoxEdit').DoSetText(val)
Parameters:
Name | Type | Description |
---|---|---|
val | string | Text value. |
Returns:
boolean: 'true' if success, 'false' otherwise.