LargeSplitButtonWithDropdownList
Creates a large button that contains a regular button section and an arrow to open a dropdown menu.
Read time 1 minuteLast updated 8 days ago
Definition
- Type: Method
- Namespace: UnityEditor
- Assembly: UnityEditor
LargeSplitButtonWithDropdownList(GUIContent, string[], MenuFunction2)
Creates a large button that contains a regular button section and an arrow to open a dropdown menu.
public static bool LargeSplitButtonWithDropdownList(GUIContent content, string[] buttonNames, GenericMenu.MenuFunction2 callback)
Parameters
Text, image and tooltip the button displays.
The list of options in the dropdown menu.
The callback to fire when a dropdown menu item is selected.
Returns
Type | Description |
|---|---|
| bool | |
Remarks
When the user selects the button section the method returns true. When the user selects the dropdown arrow a dropdown menu appears. When the user selects an item in the dropdown menu, is fired with the selected menu item as input.
callbackLargeSplitButtonWithDropdownList(GUIContent, string[], MenuFunction2, bool)
Creates a large button that contains a regular button section and an arrow to open a dropdown menu.
public static bool LargeSplitButtonWithDropdownList(GUIContent content, string[] buttonNames, GenericMenu.MenuFunction2 callback, bool disableMainButton)
Parameters
Text, image and tooltip the button displays.
The list of options in the dropdown menu.
The callback to fire when a dropdown menu item is selected.
Whether to disable the button. The default value is .
falseReturns
Type | Description |
|---|---|
| bool | |
Remarks
When the user selects the button section the method returns true. When the user selects the dropdown arrow a dropdown menu appears. When the user selects an item in the dropdown menu, is fired with the selected menu item as input.
callback