Skip to content

DynamicsAXComboBoxEdit

DynamicsAX DynamicsAXComboBoxEdit.

Extends UIAObject

Extends SeSSimulatedObject

Behavior Pattern: DynamicsAXComboBoxBehavior

Action Summary

Action Description
DoSelectItem Selects an item of this object.

Action Detail

DoSelectItem

Selects an item of this object.

SeS('SomeDynamicsAXComboBoxEdit').DoSelectItem(item)

Parameters:

Name Type Description
item string | number Item index or text value to select.

Returns:

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

Behavior Pattern: DynamicsAXTextBoxBehavior

Property Summary

Property Description Getter Setter
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

Text

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

Type: string

Accessors: GetText, SetText

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

SeS('SomeDynamicsAXComboBoxEdit').SetText(/**string*/value)

Action Detail

DoSetText

Sets text value of this object.

SeS('SomeDynamicsAXComboBoxEdit').DoSetText(val)

Parameters:

Name Type Description
val string Text value.

Returns:

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