Borodar.ReorderableList.ReorderableListControl.DoCommand C# (CSharp) Метод

DoCommand() публичный Метод

Call to manually perform command.

Warning message is logged to console if attempted to execute unknown command.

public DoCommand ( GUIContent command, int itemIndex, IReorderableListAdaptor adaptor ) : bool
command UnityEngine.GUIContent Content representing command.
itemIndex int Zero-based index of item which was right-clicked.
adaptor IReorderableListAdaptor Reorderable list adaptor.
Результат bool
        public bool DoCommand(GUIContent command, int itemIndex, IReorderableListAdaptor adaptor)
        {
            return DoCommand(command.text, itemIndex, adaptor);
        }

Same methods

ReorderableListControl::DoCommand ( string commandName, int itemIndex, IReorderableListAdaptor adaptor ) : bool