GuiComboBoxAddItem

From Multi Theft Auto: Wiki

Jump to: navigation, search

Adds an item to a combobox.

Syntax

int guiComboBoxAddItem( element comboBox, string value )

Required Arguments

  • comboBox: The combobox you want to add a row to
  • value: The text that the item will contain.

Returns

Returns the item ID if it has been created, false otherwise.

Example

This Example will add an item to comboBox when player use command addItem followed by the value of the item.

addCommandHandler("addItem",
function (command, value)
 
guiComboBoxAddItem(comboBox, value)
outputChatBox("Item with text " .. text .. " has been added!")
 
end)

See Also

Buttons

Checkboxes

Comboboxes

Edit fields


Gridlists

Memos


Progress bars

Radio buttons

Scrollbars

Scroll panes

Static images

Tab panels

Tabs

Text labels

Windows