windowsforms-devexpress-dot-xtrapivotgrid-7a8f849a.md
Stores information on the cells displayed within the PivotGrid control.
Namespace : DevExpress.XtraPivotGrid
Assembly : DevExpress.XtraPivotGrid.v25.2.dll
NuGet Package : DevExpress.Win.PivotGrid
public class PivotGridCells
Public Class PivotGridCells
The following members return PivotGridCells objects:
The PivotGridControl.Cells property of the PivotGridCells class allows you to get view information on the cells displayed by the control and retrieve data associated with particular cells.
The PivotGridCells.ColumnCount and PivotGridCells.RowCount properties specify the number of columns and rows within the control. To iterate through and get information on particular cells, use the PivotGridCells.GetCellInfo method. It requires the indexes of the column and row which contain the desired cell to be passed as its parameters. The object returned by this method lets you determine the cell’s value and display text. If the cell represents a data cell (this displays a summary result) you can use the PivotCellEventArgsBase<TField, TData, TCustomTotal>.CreateDrillDownDataSource method to get a list of the records which are used to calculate the summary for this cell.
The PivotGridCells.FocusedCell and PivotGridCells.Selection properties allow you to get or set the focused cell and cell selection, respectively.
The following example demonstrates how to manually copy the display text of the control’s selected cells to the Clipboard. The selected cells are identified by the PivotGridCells.Selection property.
You can also use the PivotGridCells.CopySelectionToClipboard method to copy the selected cells to the Clipboard.
using DevExpress.XtraPivotGrid;
const string CellDelimiter = "\t";
const string LineDelimiter = "\r\n";
void CopyToClipboard(Pivot Grid Control pivotGrid) {
PivotGridCells cells = pivotGrid.Cells;
// Get the coordinates of the selected cells.
Rectangle cellSelection = cells.Selection;
string result = "";
// Get the index of the bottommost selected row.
int maxRow = cellSelection.Y + cellSelection.Height - 1;
// Get the index of the rightmost selected column.
int maxColumn = cellSelection.X + cellSelection.Width - 1;
// Iterate through the selected cells.
for(int rowIndex = cellSelection.Y; rowIndex <= maxRow; rowIndex++) {
for(int colIndex = cellSelection.X; colIndex <= maxColumn; colIndex++) {
// Get the current cell's display text.
result += cells.GetCellInfo(colIndex, rowIndex).DisplayText;
if(colIndex < maxColumn) result += CellDelimiter;
}
if(rowIndex < maxRow) result += LineDelimiter;
}
// Copy the resulting text to the clipboard.
Clipboard.SetDataObject(result);
}
Imports DevExpress.XtraPivotGrid
Const CellDelimiter As String = vbTab
Const LineDelimiter As String = vbCrLf
Sub CopyToClipboard(ByVal PivotGrid As PivotGridControl)
Dim cells As PivotGridCells = PivotGrid.Cells
' Get the coordinates of the selected cells.
Dim cellSelection As Rectangle = cells.Selection
Dim result As String = ""
' Get the index of the bottommost selected row.
Dim maxRow As Integer = cellSelection.Y + cellSelection.Height - 1
' Get the index of the rightmost selected column.
Dim maxColumn As Integer = cellSelection.X + cellSelection.Width - 1
' Iterate through the selected cells.
Dim rowIndex, colIndex As Integer
For rowIndex = cellSelection.Y To maxRow
For colIndex = cellSelection.X To maxColumn
' Get the current cell's display text.
result += cells.GetCellInfo(colIndex, rowIndex).DisplayText
If (colIndex < maxColumn) Then result += CellDelimiter
Next
If (rowIndex < maxRow) Then result += LineDelimiter
Next
' Copy the resulting text to the clipboard.
Clipboard.SetDataObject(result)
End Sub
Object PivotGridCells
See Also