Copies the values displayed within the specified range of nodes, to the clipboard.
Namespace:DevExpress.Xpf.Grid
Assembly:DevExpress.Xpf.Grid.v19.2.dll
Note: This API is now obsolete.
Use the TreeListControl.CopyRangeToClipboard method instead

Syntax
C# |
public void CopyRangeToClipboard(
TreeListNode startNode,
TreeListNode endNode
)
|
VB |
Public Sub CopyRangeToClipboard(
ByVal startNode As TreeListNode,
ByVal endNode As TreeListNode
)
|

Remarks
To copy the values displayed within selected nodes, use the DataControlBase.CopySelectedItemsToClipboard method. To copy the values displayed within the specified nodes, use the CopyRowsToClipboard method.
All these methods do nothing if the DataControlBase.ClipboardCopyMode property is set to 'None'.
To learn more, see Clipboard Management.

See Also