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

AddButton() public method

public AddButton ( Image image, string text, EventHandler clickHandler ) : System.Windows.Forms.CommandBarButton
image Image
text string
clickHandler EventHandler
return System.Windows.Forms.CommandBarButton
        public CommandBarButton AddButton(Image image, string text, EventHandler clickHandler)
        {
            CommandBarButton button = this.AddButton(text, clickHandler);
            button.Image = image;
            return button;
        }

Same methods

CommandBarItemCollection::AddButton ( Image image, string text, EventHandler clickHandler, Keys shortcut ) : System.Windows.Forms.CommandBarButton
CommandBarItemCollection::AddButton ( string text, EventHandler clickHandler ) : System.Windows.Forms.CommandBarButton
CommandBarItemCollection::AddButton ( string text, EventHandler clickHandler, Keys shortcut ) : System.Windows.Forms.CommandBarButton