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

TreeListCopyingToClipboardEventArgs(TreeListView, IEnumerable<TreeListCell>, Boolean) Constructor

Initializes a new instance of the TreeListCopyingToClipboardEventArgs class.

Namespace: DevExpress.Xpf.Grid.TreeList

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

Declaration

public TreeListCopyingToClipboardEventArgs(
    TreeListView view,
    IEnumerable<TreeListCell> cells,
    bool copyHeader
)

Parameters

Name Type Description
view TreeListView

The TreeListView.

cells IEnumerable<DevExpress.Xpf.Grid.TreeList.TreeListCell>

An array of cells whose values are about to be copied to the clipboard. This value is assigned to the TreeListCopyingToClipboardEventArgs.Cells property.

copyHeader Boolean

true, to copy column headers; otherwise, false.

See Also