Skip to content

DXLookUpEdit

DevXpress LookUpEdit.

UI element class: DevExpress.XtraEditors.LookUpEdit

Extends ManagedObject

Extends SeSSimulatedObject

Behavior Pattern: DXLookUpEditBehavior

Property Summary

Property Description Getter Setter
ItemIndex Index of the selected element of the object. GetItemIndex SetItemIndex
ItemName Name of the selected element of the object. GetItemName
SelectedIndex Index of the selected element of the object. GetSelectedIndex SetSelectedIndex
SelectedText Text of the object, 'false' if text can not be read. GetSelectedText SetSelectedText
Text Text of the object, 'false' if text can not be read. GetText SetText

Action Summary

Action Description
DoSelectItem Selects an item of this object.
DoSetText Sets text value of this object.

Property Detail

ItemIndex

Index of the selected element of the object.

Type: string

Accessors: GetItemIndex, SetItemIndex

value = SeS('SomeDXLookUpEdit').GetItemIndex()

SeS('SomeDXLookUpEdit').SetItemIndex(value)

ItemName

Name of the selected element of the object.

Type: string

Accessors: GetItemName

value = SeS('SomeDXLookUpEdit').GetItemName()

SelectedIndex

Index of the selected element of the object.

Type: number

Accessors: GetSelectedIndex, SetSelectedIndex

value = SeS('SomeDXLookUpEdit').GetSelectedIndex()

SeS('SomeDXLookUpEdit').SetSelectedIndex(value)

SelectedText

Text of the object, 'false' if text can not be read.

Type: string

Accessors: GetSelectedText, SetSelectedText

value = SeS('SomeDXLookUpEdit').GetSelectedText()

SeS('SomeDXLookUpEdit').SetSelectedText(value)

Text

Text of the object, 'false' if text can not be read.

Type: string

Accessors: GetText, SetText

value = SeS('SomeDXLookUpEdit').GetText()

SeS('SomeDXLookUpEdit').SetText(value)

Action Detail

DoSelectItem

Selects an item of this object.

SeS('SomeDXLookUpEdit').DoSelectItem(val)

Parameters:

Name Type Description
val number index of value to select

Returns:

boolean: 'true' if success, 'false' otherwise.

DoSetText

Sets text value of this object.

SeS('SomeDXLookUpEdit').DoSetText(val)

Parameters:

Name Type Description
val string Text value.

Returns:

boolean: 'true' if success, 'false' otherwise.