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

AddMenu() public method

public AddMenu ( Image image, string text ) : System.Windows.Forms.CommandBarMenu
image Image
text string
return System.Windows.Forms.CommandBarMenu
        public CommandBarMenu AddMenu(Image image, string text)
        {
            CommandBarMenu menu = this.AddMenu(text);
            menu.Image = image;
            return menu;
        }

Same methods

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