Skip to main content

ClipboardNodePastingEventArgs(TreeListPasteNodeValues, IEnumerable<TreeListColumn>, Object[], TreeListNode, Int32, Int32) Constructor

Initializes a new ClipboardNodePastingEventArgs class instance.

Namespace: DevExpress.XtraTreeList

Assembly: DevExpress.XtraTreeList.v23.2.dll

NuGet Packages: DevExpress.Win.Navigation, DevExpress.Win.TreeList

Declaration

public ClipboardNodePastingEventArgs(
    TreeListPasteNodeValues pasteNode,
    IEnumerable<TreeListColumn> treeListColumns,
    object[] originalValues,
    TreeListNode treeListNode,
    int dataRowCountCore,
    int rowCountCore
)

Parameters

Name Type Description
pasteNode DevExpress.XtraTreeList.TreeListPasteNodeValues

A dictionary that contains values that will be pasted to the control.

treeListColumns IEnumerable<TreeListColumn>

A collection that contains tree list columns.

originalValues Object[]

A collection that contains original values in the clipboard.

treeListNode TreeListNode

The node being updated or the parent node if the node is being appended.

dataRowCountCore Int32

A value that specifies the count of rows that contain data to process (without column and band header rows).

rowCountCore Int32

A value that specifies the total count of rows to process (with column and band header rows).

See Also