Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

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

In This Article

Initializes a new ClipboardNodePastingEventArgs class instance.

Namespace: DevExpress.XtraTreeList

Assembly: DevExpress.XtraTreeList.v24.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