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

NavBarGroupCollection.IndexOfName(String) Method

Searches for a group object specified by the value of its NavBarGroup.Name property and returns the zero-based index of the first occurrence within the group collection.

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v19.1.dll

Declaration

public int IndexOfName(
    string name
)

Parameters

Name Type Description
name String

A String value representing the NavBarGroup.Name property value of the required group.

Returns

Type Description
Int32

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

Remarks

The IndexOfName method enables you to determine where a group specified by the NavBarGroup.Name property value is located within the group collection represented by the current object. The collection of group objects can be accessed via the ASPxNavBar.Groups property of a navbar control.

This method searches the group collection for the specified group and, if found, returns the index value of the first occurrence. If no instance is found, the negative one (-1) is returned. The collection of groups is searched forward starting with the first element and ending with the last one.

See Also