gui
Get access to all of our gui controls
Examples:
Checkbox
var state = gui.triggerCheckBox.Checked;Combobox
// getting selected text
var text = gui.rcsDisableComboBox.Text;
// set index, 0 will be the first option
gui.rcsDisableComboBox.SelectedIndex = 0;Last updated
Was this helpful?