Version: 2022.3
LanguageEnglish
  • C#

DropdownMenu.InsertAction(int,string,Action<DropdownMenuAction>,Func<DropdownMenuAction, DropdownMenuAction.Status>,object)

Suggest a change

Success!

Thank you for helping us improve the quality of Unity Documentation. Although we cannot accept all submissions, we do read each suggested change from our users and will make updates where applicable.

Close

Submission failed

For some reason your suggested change could not be submitted. Please <a>try again</a> in a few minutes. And thank you for taking the time to help us improve the quality of Unity Documentation.

Close

Cancel

Parameters

atIndex Index where the item should be inserted.
actionName Name of the item. This name will be displayed in the drop-down menu.
action Callback to execute when the user selects this item in the menu.
actionStatusCallback Callback to execute to determine the status of the item.
userData An object that will be stored in the userData property of the DropdownMenuAction item. This object is accessible through the action callback.

Description

Add an item that will execute an action in the drop-down menu. The item is added at the end of the specified index in the list.


Parameters

atIndex Index where the item should be inserted.
actionName Name of the item. This name will be displayed in the drop-down menu.
action Callback to execute when the user selects this item in the menu.
status The status of the item.

Description

Add an item that will execute an action in the drop-down menu. The item is added at the end of the specified index in the list.