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

AddCheckBox() public method

public AddCheckBox ( Image image, string text ) : System.Windows.Forms.CommandBarCheckBox
image Image
text string
return System.Windows.Forms.CommandBarCheckBox
        public CommandBarCheckBox AddCheckBox(Image image, string text)
        {
            CommandBarCheckBox checkBox = this.AddCheckBox(text);
            checkBox.Image = image;
            return checkBox;
        }

Same methods

CommandBarItemCollection::AddCheckBox ( Image image, string text, Keys shortcut ) : System.Windows.Forms.CommandBarCheckBox
CommandBarItemCollection::AddCheckBox ( string text ) : System.Windows.Forms.CommandBarCheckBox
CommandBarItemCollection::AddCheckBox ( string text, Keys shortcut ) : System.Windows.Forms.CommandBarCheckBox