Skip to main content

TreeListView.CopyCellsToClipboard(IEnumerable<TreeListCell>) 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<TreeListCell> cells
)

Parameters

Name Type Description
cells IEnumerable<DevExpress.Xpf.Grid.TreeList.TreeListCell>

An array of TreeListCell 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 TreeListView.CopySelectedCellsToClipboard.

To learn more, see Clipboard Management.

See Also