net90_PropertyGridHelpers.Controls_FlagCheckedListBox_Add - dparvin/PropertyGridHelpers GitHub Wiki
Adds an existing FlagCheckedListBoxItem
to the checklist.
public FlagCheckedListBoxItem Add(FlagCheckedListBoxItem item)
parameter | description |
---|---|
item | The item to add. |
The added FlagCheckedListBoxItem
.
- class FlagCheckedListBoxItem
- class FlagCheckedListBox
- namespace PropertyGridHelpers.Controls
- assembly PropertyGridHelpers
Adds a new item to the checklist with the specified bitwise value and display caption.
public FlagCheckedListBoxItem Add(int value, string caption)
parameter | description |
---|---|
value | The bitwise integer value representing a flag. |
caption | The display text for the item. |
A FlagCheckedListBoxItem
representing the added item.
- class FlagCheckedListBoxItem
- class FlagCheckedListBox
- namespace PropertyGridHelpers.Controls
- assembly PropertyGridHelpers