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

TableView.CopyCellsToClipboard(IEnumerable<GridCell>) Method

Copies the values displayed within the specified cells to the clipboard.

Namespace: DevExpress.Xpf.Grid

Assembly: DevExpress.Xpf.Grid.v18.2.dll

Declaration

public void CopyCellsToClipboard(
    IEnumerable<GridCell> gridCells
)

Parameters

Name Type Description
gridCells IEnumerable<GridCell>

An array of GridCell objects which contain cell coordinates.

Remarks

The CopyCellsToClipboard method allows you to copy display values of multiple cells to the clipboard. To copy values displayed within selected cells, use the TableView.CopySelectedCellsToClipboard.

To learn more, see Clipboard Management.

See Also