Skip to main content

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

Initializes a new instance of the TreeListCopyingToClipboardEventArgs class.

Namespace: DevExpress.Xpf.Grid.TreeList

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

Declaration

public TreeListCopyingToClipboardEventArgs(
    TreeListView view,
    IEnumerable<int> rowHandles,
    bool copyHeader
)
Public Sub New(
    view As TreeListView,
    rowHandles As IEnumerable(Of Integer),
    copyHeader As Boolean
)

Parameters

Name Type Description
view TreeListView

The TreeListView.

rowHandles IEnumerable<Int32>

An array of row handles that identify nodes whose values are about to be copied to the clipboard. This value is assigned to the CopyingToClipboardEventArgsBase.RowHandles property.

copyHeader Boolean

true to copy column headers; otherwise, false.

See Also