GuiComboBoxSetItemText: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
mNo edit summary
(Added example)
Line 16: Line 16:
Returns ''true'' if the text was set successfully, ''false'' otherwise.
Returns ''true'' if the text was set successfully, ''false'' otherwise.


==Example==  
==Example==
This changes the text of the selected item using command ''setText''.
<syntaxhighlight lang="lua">
<syntaxhighlight lang="lua">
--Todo..
addCommandHandler("setText",
function(cmd, text)
 
local item = guiComboBoxGetSelected(comboBox)
guiComboBoxSetItemText(comboBox, item, text)
 
end)
 
</syntaxhighlight>
</syntaxhighlight>


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

Revision as of 16:51, 26 February 2012

This function changes the text of a combobox item.

Syntax

bool guiComboBoxSetItemText ( element comboBox, int itemId, string text )

Required Arguments

  • comboBox: The combobox containing the item you're interested in
  • itemId: The index of the item
  • text: The text you want to put in (does NOT accept numbers, use tostring() for that)

Returns

Returns true if the text was set successfully, false otherwise.

Example

This changes the text of the selected item using command setText.

addCommandHandler("setText",
function(cmd, text)

local item = guiComboBoxGetSelected(comboBox)
guiComboBoxSetItemText(comboBox, item, 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