FormComboBoxControl.add Method [AX 2012]

Adds a string value to the combo box list.

public void add(str string)

Run On

Client

Parameters

string
Type: str
The string value to add to the combo box list.

The string is added to the end of the list. If you want to put the string in a specific position in the list, use the insert method.

The following example shows how to add a string to the combo box list.

this.add("maple"); 
this.add("oak"); 
this.add("pine");

Community Additions

ADD
Show: