System.Windows.Forms.CommandBarItemCollection.AddCheckBox C# (CSharp) Méthode

AddCheckBox() public méthode

public AddCheckBox ( Image image, string text ) : System.Windows.Forms.CommandBarCheckBox
image Image
text string
Résultat 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