guiComboBoxGetItemText | Multi Theft Auto: Wiki Skip to content

guiComboBoxGetItemText

Client-side
Server-side
Shared

Manual Review Required

Please finish this page using the corresponding Old Wiki article. Go to Contribution guidelines for more information.


This function retrieves the text from a specific combobox item.

OOP Syntax Help! I don't understand this!

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

  • string: value

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

Code Examples

shared

This outputs selected item's text to the chatbox.

local x,y = guiGetScreenSize()
local guiWindow = createWindow(x/2-500,y/2-500,500,500,"myWindow",false,nil)
local comboBox = guiCreateComboBox(0.1,0,1,0.8,0.8,"Select a value please",true,guiWindow)
guiComboBoxAddItem(comboBox,"value1")
local item = guiComboBoxGetSelected(comboBox)
local text = guiComboBoxGetItemText(comboBox, item)
if text then
outputChatBox("You have selected: " .. text)
end

See Also

GUI Functions