Skip to main content

GridSummaryItemCollection.IndexOf(GridSummaryItem) Method

Returns the item’s position within the collection.

Namespace: DevExpress.XtraGrid

Assembly: DevExpress.XtraGrid.v23.2.dll

NuGet Packages: DevExpress.Win.Grid, DevExpress.Win.Navigation

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