System.Windows.Forms.CommandBarItemCollection.AddMenu C# (CSharp) Method

AddMenu() public method

public AddMenu ( string text ) : System.Windows.Forms.CommandBarMenu
text string
return System.Windows.Forms.CommandBarMenu
        public CommandBarMenu AddMenu(string text)
        {
            CommandBarMenu menu = new CommandBarMenu(text);
            this.Add(menu);
            return menu;
        }

Same methods

CommandBarItemCollection::AddMenu ( Image image, string text ) : System.Windows.Forms.CommandBarMenu
CommandBarItemCollection::AddMenu ( Image image, string text, EventHandler dropDownHandler ) : System.Windows.Forms.CommandBarMenu
CommandBarItemCollection::AddMenu ( string text, EventHandler dropDownHandler ) : System.Windows.Forms.CommandBarMenu