GuiComboBoxGetSelected: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
mNo edit summary
(Added example)
Line 1: Line 1:
{{Needs Example}}
{{Client function}}
{{Client function}}
__NOTOC__
__NOTOC__
Line 16: Line 15:


==Example==
==Example==
This example outputs selected item's text and ID to the chat.
<syntaxhighlight lang="lua">
<syntaxhighlight lang="lua">
--Todo..
addCommandHandler("getSelected",
function (command)
 
local item = guiComboBoxGetSelected(comboBox)
local text = guiComboBoxGetItemText(comboBox, item)
 
outputChatBox("Currently selected item with ID: " .. tostring(item) .. " and with text: " .. text)
 
end)
</syntaxhighlight>
</syntaxhighlight>


==See Also==
==See Also==
{{GUI functions}}
{{GUI functions}}

Revision as of 17:02, 26 February 2012

This function returns the index of the selected combobox item.

Syntax

int guiComboBoxGetSelected ( element comboBox )

Required Arguments

  • comboBox: the combobox you want to know the selected item index of

Returns

Returns the index of the selected item if the specified combobox is valid and has a selected item, -1 if no item is selected, false or nil otherwise.

Example

This example outputs selected item's text and ID to the chat.

addCommandHandler("getSelected",
function (command)

local item = guiComboBoxGetSelected(comboBox)
local text = guiComboBoxGetItemText(comboBox, item)

outputChatBox("Currently selected item with ID: " .. tostring(item) .. " and with text: " .. text)

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