C# Класс ComponentFactory.Krypton.Toolkit.KryptonCheckedListBox.ObjectCollection

Represents the collection of items in a CheckedListBox.
Наследование: System.Windows.Forms.ListBox.ObjectCollection
Показать файл Открыть проект

Открытые методы

Метод Описание
Add ( object item, CheckState check ) : int

Adds an item to the list of items for a CheckedListBox, specifying the object to add and the initial checked value.

Add ( object item, bool isChecked ) : int

Adds an item to the list of items for a CheckedListBox, specifying the object to add and whether it is checked.

ObjectCollection ( KryptonCheckedListBox owner ) : System

Initialize a new instance of the ObjectCollection class.

Описание методов

Add() публичный Метод

Adds an item to the list of items for a CheckedListBox, specifying the object to add and the initial checked value.
public Add ( object item, CheckState check ) : int
item object An object representing the item to add to the collection.
check CheckState The initial CheckState for the checked portion of the item.
Результат int

Add() публичный Метод

Adds an item to the list of items for a CheckedListBox, specifying the object to add and whether it is checked.
public Add ( object item, bool isChecked ) : int
item object An object representing the item to add to the collection.
isChecked bool true to check the item; otherwise, false
Результат int

ObjectCollection() публичный Метод

Initialize a new instance of the ObjectCollection class.
public ObjectCollection ( KryptonCheckedListBox owner ) : System
owner KryptonCheckedListBox Reference to owning control.
Результат System