AddItem
Adds an item to this menu.
Read time 1 minuteLast updated 12 days ago
Definition
- Type: Method
- Namespace: UnityEngine.UIElements
- Assembly: UnityEngine.UIElementsModule
AddItem(string, bool, Action)
Adds an item to this menu.
public abstract void AddItem(string itemName, bool isChecked, Action action)
Parameters
AddItem(string, bool, Action<Object>, Object)
Adds an item to this menu.
public abstract void AddItem(string itemName, bool isChecked, Action<object> action, object data)
Parameters
The text to display to the user.
Indicates whether a checkmark next to the item is displayed.
The callback to invoke when the item is selected by the user.
The object to pass to the callback as a parameter.