AGS.Editor.GUIController.GetMenuCommandID C# (CSharp) Method

GetMenuCommandID() private method

private GetMenuCommandID ( string id, IEditorComponent component ) : string
id string
component IEditorComponent
return string
        private string GetMenuCommandID(string id, IEditorComponent component)
        {
            if (!id.Contains(CONTROL_ID_SPLIT))
            {
                id = component.ComponentID + CONTROL_ID_SPLIT + id;
            }
            return id;
        }
GUIController