GuiComboBoxAddItem: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
No edit summary
m (→‎Example: Text isn't defined, and value should be there.)
Line 22: Line 22:


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

Revision as of 23:37, 23 March 2013

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 " .. value .. " has been added!")
 
end)

See Also

General functions

Browsers

Buttons

Checkboxes

Comboboxes

Edit Boxes

Gridlists

Memos

Progressbars

Radio Buttons

Scrollbars

Scrollpanes

Static Images

Tab Panels

Tabs

Text Labels

Windows