AGS.Editor.GUIController.SetMenuItemEnabled C# (CSharp) Метод

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

public SetMenuItemEnabled ( IEditorComponent plugin, string id, bool enabled ) : void
plugin IEditorComponent
id string
enabled bool
Результат void
        public void SetMenuItemEnabled(IEditorComponent plugin, string id, bool enabled)
        {
            string commandID = GetMenuCommandID(id, plugin);
            _menuManager.SetMenuItemEnabled(commandID, enabled);
        }
GUIController