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

BootstrapCardViewToolbarMenuItemCollection.IndexOf(Predicate<BootstrapCardViewToolbarMenuItem>) Method

Searches for the specified item and returns the zero-based index of its first occurrence within the collection.

Namespace: DevExpress.Web.Bootstrap

Assembly: DevExpress.Web.Bootstrap.v18.2.dll

Declaration

public int IndexOf(
    Predicate<BootstrapCardViewToolbarMenuItem> match
)

Parameters

Name Type Description
match Predicate<BootstrapCardViewToolbarMenuItem>

A BootstrapCardViewToolbarMenuItem object representing the item to locate in the collection.

Returns

Type Description
Int32

The zero-based index of the first occurrence of the specified item within the collection, if found; otherwise, negative one (-1).

Remarks

The IndexOf method lets you find the item specified by the item parameter within the current collection.

This method searches the collection for the specified item and if found, returns the index value of its first occurrence. If no instance is found, negative one (-1) is returned. The collection is searched in a forwards direction starting at the first element and ending at the last element.

See Also