GuiComboBoxGetItemText: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
(Added example)
No edit summary
Line 26: Line 26:
==See Also==
==See Also==
{{GUI functions}}
{{GUI functions}}
[[Category:Needs_Example]]

Revision as of 16:45, 26 February 2012

This function retrieves the text from a specific combobox item.

Syntax

string guiComboBoxGetItemText ( element comboBox, int itemId )

Required Arguments

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

Returns

Returns the text of the item if the arguments are right, false otherwise.

Example

This outputs selected item's text to the chatbox.

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

outputChatBox("You have selected: " .. text)

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