Difference between revisions of "GUIComboBox"

From Virtual World Web Wiki
Jump to: navigation, search
(Documentation for the GUIComboBox class)
(Documentation for the GUIComboBox class)
 
(3 intermediate revisions by the same user not shown)
(No difference)

Latest revision as of 14:26, 15 January 2018

Component representing a dropdown list of options to choose from

Remarks [edit]

Properties

int SelectedIndex {get; set;}
The index of the item in the dropdown list that is selected (or -1 for none)
GUISelectableComponent SelectedItem {get;}
Which item is selected in the dropdown list
bool UpdateLabel {get; set;}
Should the button's label automatically update with the text of the selected option

Events

OnSelect()
Event fired when one of the options is selected

Methods

GUIComponent AddItem(string itemName, string template = NULL)
Adds an item to the dropdown menu, optionally specifying a particular template
void ClearItems()
Remove all items from this component