Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

PivotGridControl.GetFocusedCellInfo() Method

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

Namespace: DevExpress.Xpf.PivotGrid

Assembly: DevExpress.Xpf.PivotGrid.v24.2.dll

NuGet Package: DevExpress.Wpf.PivotGrid

#Declaration

public PivotCellBaseEventArgs GetFocusedCellInfo()

#Returns

Type Description
PivotCellBaseEventArgs

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

#Remarks

The GetFocusedCellInfo method returns a PivotCellBaseEventArgs 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 lets the array of records associated with this cell to be retrieved via the PivotCellBaseEventArgs.CreateDrillDownDataSource method.

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

See Also