Skip to main content
A newer version of this page is available. .

CheckedListBoxItemCollection.IndexOf(Object) Method

Returns the zero-based index of the specified CheckedListBoxItem in the collection, or, if the specified value is not a CheckedListBoxItem object, returns the index of the item that contains this value in its CheckedListBoxItem.Value property.

Namespace: DevExpress.XtraEditors.Controls

Assembly: DevExpress.XtraEditors.v19.2.dll

Declaration

public override int IndexOf(
    object value
)

Parameters

Name Type Description
value Object

A CheckedListBoxItem object whose index in the collection needs to be returned. Or, a value (CheckedListBoxItem.Value) of the item whose index needs to be returned.

Returns

Type Description
Int32

A zero-based index of the required item.

See Also