GuiComboBoxSetSelected: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
No edit summary
Line 17: Line 17:
==Example==
==Example==
<syntaxhighlight lang="lua">
<syntaxhighlight lang="lua">
--Todo..
function createChecks()
cehck1 = guiCreateCheckBox(20,30,150,20,"Checked checkbox",true,false,guiWindow)
guiComboBoxSetSelected ( cehck1 , 1 )
cehck2 = guiCreateCheckBox(20,60,150,20,"Unchecked checkbox",false,false,guiWindow)
end
addEventHandler("onClientResourceStart", getResourceRootElement(getThisResource()), createChecks)
</syntaxhighlight>
</syntaxhighlight>



Revision as of 18:31, 23 June 2011

This function sets the selected item from a combobox.

Syntax

bool guiComboBoxSetSelected ( element comboBox, int itemIndex )

Required Arguments

  • comboBox: the combobox you want to select an item from
  • itemIndex: the item you want to select (item 0 is the first item). If -1 is specified, then the combo box text is set to it's caption.

Returns

Returns true if the selected item has been changed successfully, false otherwise.

Example

function createChecks()
cehck1 = guiCreateCheckBox(20,30,150,20,"Checked checkbox",true,false,guiWindow)
guiComboBoxSetSelected ( cehck1 , 1 )
cehck2 = guiCreateCheckBox(20,60,150,20,"Unchecked checkbox",false,false,guiWindow)
end
addEventHandler("onClientResourceStart", getResourceRootElement(getThisResource()), createChecks)

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