CheckedListBox.ObjectCollection
Wisej.Web.CheckedListBox ObjectCollection
Last updated
Was this helpful?
Wisej.Web.CheckedListBox ObjectCollection
Last updated
Was this helpful?
Namespace: Wisej.Web
Assembly: Wisej.Framework (4.0.0.0)
Represents the collection of items in a CheckedListBox.
Adds an item to the list of items for a ListBox.
item
An object representing the item to add to the collection.
Returns: Int32. The zero-based index of the item in the collection.
Throws:
ArgumentNullException The item parameter was null.
Adds an item to the list of items for a CheckedListBox.
item
An object representing the item to add to the collection.
isChecked
True to check the item.
Returns: Int32. The zero-based index of the item in the collection.
Throws:
ArgumentNullException The item parameter was null.
Adds an item to the list of items for a CheckedListBox.
item
An object representing the item to add to the collection.
check
The check state for the new item.
Returns: Int32.
Adds a collection of items to the list.
items
Collection of items to add to the list.
Removes all items from the CheckedListBox control.
Returns an instance of the Element wrapper class.
value
Wrapped value.
state
Initial state.
Returns: Element.
Returns the list of checked items.
Returns: IEnumerable<Element>.
Returns the check state for the element at the index.
index
Returns: CheckState.
Inserts an item into the collection at the specified index.
index
The zero-based index location where the item is inserted.
item
An object representing the item to insert.
Throws:
ArgumentNullException The item was null.
ArgumentOutOfRangeException The index was less than zero; or the index was greater than the count of items in the collection.
Inserts an item into the collection at the specified index.
index
The zero-based index location where the item is inserted.
item
An object representing the item to insert.
check
The check state for the new item.
Throws:
ArgumentNullException The item was null.
ArgumentOutOfRangeException The index was less than zero; or the index was greater than the count of items in the collection.
Removes an item from the ListBox at the specified index.
index
The index of the item to remove.
Throws:
ArgumentOutOfRangeException The index parameter was less than zero, or the index parameter was greater than or equal to the count of items in the collection.
Renders the check state for the items that are either checked or undetermined.
Returns: Object.
Sets the check state of the item at the index.
index
checkState
Changes a single element in the list.
index
Index of the item to change.
value
New item value.