System.Windows.Forms.CommandBarItemCollection.AddCheckBox C# (CSharp) 메소드

AddCheckBox() 공개 메소드

public AddCheckBox ( string text ) : System.Windows.Forms.CommandBarCheckBox
text string
리턴 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