Skip to main content

IThreadSafeAccessible.GetCellDisplayText(Int32, Int32) Method

Returns text displayed in the specified cell.

Namespace: DevExpress.XtraPivotGrid

Assembly: DevExpress.PivotGrid.v23.2.Core.dll

NuGet Packages: DevExpress.PivotGrid.Core, DevExpress.Win.Navigation

Declaration

string GetCellDisplayText(
    int columnIndex,
    int rowIndex
)

Parameters

Name Type Description
columnIndex Int32

A zero-based integer value that specifies the index of the column where the cell resides.

rowIndex Int32

A zero-based integer value that specifies the index of the row where the cell resides.

Returns

Type Description
String

A String that specifies text displayed in the specified cell.

Remarks

The GetCellDisplayText method is in effect only for cells that have already been displayed. Their display text is contained in the pivot grid cache and can be accessed while the background calculations are being performed. For other cells, the GetCellDisplayText method returns null (Nothing in Visual Basic).

If the specified column or row index is out of range, an exception is thrown. To obtain the number of columns and rows displayed in the pivot grid, use the IThreadSafeAccessible.ColumnCount and IThreadSafeAccessible.RowCount properties respectively.

To obtain the display representation of a field value, use the IThreadSafeAccessible.GetFieldValueDisplayText method.

See Also