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

PivotGridCells.GetFocusedCellInfo() Method

Returns an object that contains information on the currently focused cell.

Namespace: DevExpress.XtraPivotGrid

Assembly: DevExpress.XtraPivotGrid.v19.2.dll

Declaration

public PivotCellEventArgs GetFocusedCellInfo()

Returns

Type Description
PivotCellEventArgs

A PivotCellEventArgs object that contains information on the currently focused cell.

Remarks

The GetFocusedCellInfo method returns a PivotCellEventArgs object that contains information on the currently focused cell. It specifies the type of the cell, the cell’s value and its display text, etc. It also allows the array of records associated with this cell to be retrieved via the PivotCellEventArgsBase<TField, TData, TCustomTotal>.CreateDrillDownDataSource method.

To get information on any cell, use the PivotGridCells.GetCellInfo method.

See Also