UIMenuCheckboxItem
Shows a CheckBox on its right side and works as a true/false switch. This item inherits all parameters, functions and events from UIMenuItem, adding new ones for its uses.
Constructor
UIMenuCheckboxItem(string text, bool check)
UIMenuCheckboxItem(string text, bool check, string description)
UIMenuCheckboxItem(string text, UIMenuCheckboxStyle style, bool check, string description)
UIMenuCheckboxItem(string text, UIMenuCheckboxStyle style, bool check, string description, HudColor mainColor, HudColor highlightColor)
function UIMenuCheckboxItem.New(Text, Check, checkStyle, Description, color, highlightColor, textColor, highlightedTextColor)
Parameters
Checkbox Style
UIMenuCheckboxStyle Style { get; }
local style = item.CheckBoxStyle
Checked
public bool Checked {get;set;}
item.Checked = true;
item:Checked(bool)
Events
OnCheckboxChange
Triggered everytime a player selects the item after being highlighted, changing the checkbox value.
public event CheckboxChangeEvent CheckboxEvent;
OnCheckboxChanged = function(menu, item, checked)
end,