GuiComboBoxAddItem: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
(Created page with "{{Client function}} __NOTOC__ Adds an item to a combobox. ==Syntax== <syntaxhighlight lang="lua"> int guiComboBoxAddItem( element comboBox, string value ) </syntaxhighlight> ===Required Arguments=== *'...")
 
(OOP syntax)
 
(6 intermediate revisions by 5 users not shown)
Line 6: Line 6:
<syntaxhighlight lang="lua">
<syntaxhighlight lang="lua">
int guiComboBoxAddItem( element comboBox, string value )
int guiComboBoxAddItem( element comboBox, string value )
</syntaxhighlight>  
</syntaxhighlight>
{{OOP||[[Element/GUI/Combobox|GuiComboBox]]:addItem}}


===Required Arguments===  
===Required Arguments===  
*'''comboBox:''' The grid list you want to add a row to
*'''comboBox:''' The combobox you want to add a row to
*'''value:''' The text that the item will contain.
*'''value:''' The text that the item will contain.


Line 15: Line 16:
Returns the item ID if it has been created, ''false'' otherwise.
Returns the item ID if it has been created, ''false'' otherwise.


==Example==  
==Example==
This Example will add an item to comboBox when player use command ''addItem'' followed by the value of the item.
<syntaxhighlight lang="lua">
<syntaxhighlight lang="lua">
--Todo..
addCommandHandler("addItem", function (command, value)
    guiComboBoxAddItem(comboBox, value)
    outputChatBox("Item with text " .. value .. " has been added!")
end)
</syntaxhighlight>
</syntaxhighlight>


==See Also==
==See Also==
{{GUI functions}}
{{GUI functions}}
[[Category:Needs_Example]]
{{GUI_events}}

Latest revision as of 20:37, 7 November 2018

Adds an item to a combobox.

Syntax

int guiComboBoxAddItem( element comboBox, string value )

OOP Syntax Help! I don't understand this!

Method: GuiComboBox:addItem(...)


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

Input

GUI