public void AppendAction (string actionName, Action<DropdownMenuAction> action, Func<DropdownMenuAction,Status> actionStatusCallback, object userData);
public void AppendAction (string actionName, Action<DropdownMenuAction> action, TouchScreenKeyboard.Status status);

Parameters

actionNameName of the item. This name will be displayed in the drop-down menu.
actionCallback to execute when the user selects this item in the menu.
actionStatusCallbackCallback to execute to determine the status of the item.
userDataAn object that will be stored in the userData property of the DropdownMenuAction item.
statusThe 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 current item list.