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

GridSummaryItemCollection.IndexOf(GridSummaryItem) Method

Returns the item’s position within the collection.

Namespace: DevExpress.XtraGrid

Assembly: DevExpress.XtraGrid.v19.1.dll

Declaration

public virtual int IndexOf(
    GridSummaryItem item
)

Parameters

Name Type Description
item GridSummaryItem

A GridSummaryItem object to locate in the collection.

Returns

Type Description
Int32

A zero-based integer representing the specified item’s position within the collection. -1 if the collection doesn’t contain the specified summary item.

Remarks

The IndexOf method scans elements starting from the first one. The first found element’s index is returned.

See Also