ARCed.Scintilla.Design.FlagCheckedListBox.Add C# (CSharp) Method

Add() public method

public Add ( int v, string c ) : FlagCheckedListBoxItem
v int
c string
return FlagCheckedListBoxItem
        public FlagCheckedListBoxItem Add(int v, string c)
        {
            var item = new FlagCheckedListBoxItem(v, c);
            Items.Add(item);
            return item;
        }

Same methods

FlagCheckedListBox::Add ( FlagCheckedListBoxItem item ) : FlagCheckedListBoxItem