Developer

Items

Provides access to the list of items (strings) in the list portion of the combo box.

property Items: TStrings read GetItems write SetItems;
Read Items to access the list of items that appears in the combo box. Use the methods of Items to add, insert, delete and move items. Set the value of Items to copy the items from another string list.

Example:

NxComboBox61.Items.Add(Edit1.Text); NxComboBox61.Items.Delete(4);

See also