Skip to main content

TableView.CopyCellsToClipboard(IEnumerable<GridCell>) Method

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

Namespace: DevExpress.Xpf.Grid

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

NuGet Package: DevExpress.Wpf.Grid.Core

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