GuiComboBoxRemoveItem: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
(Syntax added. Example needed.)
 
(Added example)
Line 16: Line 16:


==Example==  
==Example==  
This example removes selected item.
<syntaxhighlight lang="lua">
<syntaxhighlight lang="lua">
--Todo..
addCommandHandler("remove",
function (command)
 
local item = guiComboBoxGetSelected(comboBox)
local text = guiComboBoxGetItemText(comboBox, item)
guiComboBoxRemoveItem(comboBox, item)
outputChatBox("Item with text " .. text .. " has been removed!")
 
end)
 
</syntaxhighlight>
</syntaxhighlight>


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

Revision as of 16:56, 26 February 2012

This function removes an item from a combobox.

Syntax

bool guiComboBoxRemoveItem( element comboBox, int itemId )

Required Arguments

  • comboBox: The combobox containing the item you're interested in
  • itemId: The index of the item to remove

Returns

Returns true if the item was removes successfully, false otherwise.

Example

This example removes selected item.

addCommandHandler("remove",
function (command)

local item = guiComboBoxGetSelected(comboBox)
local text = guiComboBoxGetItemText(comboBox, item)
guiComboBoxRemoveItem(comboBox, item)
outputChatBox("Item with text " .. text .. " has been removed!")

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