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

AddCheckBox() public method

public AddCheckBox ( string text ) : System.Windows.Forms.CommandBarCheckBox
text string
return System.Windows.Forms.CommandBarCheckBox
        public CommandBarCheckBox AddCheckBox(string text)
        {
            CommandBarCheckBox checkBox = new CommandBarCheckBox(text);
            this.Add(checkBox);
            return checkBox;
        }

Same methods

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