Back to Devexpress

TreeViewControl.ClipboardCopyOptions Property

wpf-devexpress-dot-xpf-dot-grid-dot-treeviewcontrol-b0ab782f.md

latest2.7 KB
Original Source

TreeViewControl.ClipboardCopyOptions Property

Gets or sets with which formats (RTF, HTML, Biff8(xls), CSV, Text, UnicodeText) the data copied from the TreeViewControl should be compatible. This is a dependency property.

Namespace : DevExpress.Xpf.Grid

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

NuGet Package : DevExpress.Wpf.Grid.Core

Declaration

csharp
public ClipboardCopyOptions ClipboardCopyOptions { get; set; }
vb
Public Property ClipboardCopyOptions As ClipboardCopyOptions

Property Value

TypeDescription
ClipboardCopyOptions

A value that specifies with which formats (RTF, HTML, Biff8(xls), CSV, Text, UnicodeText) the copied data should be compatible.

|

Available values:

NameDescription
None

Data is copied to the clipboard as a simple plain text.

| | Csv |

Data is copied to the clipboard compatible with the Csv format.

| | Excel |

Data is copied to the clipboard compatible with the Excel format (XLS/XLSX).

| | Html |

Data is copied to the clipboard compatible with the Html format.

| | Rtf |

Data is copied to the clipboard compatible with the Rtf format

| | Txt |

Data is copied to the clipboard compatible with the TXT format

| | All |

Data is copied to the clipboard, compatible with the RTF, HTML, XLS (Biff8), CSV, UnicodeText and Text formats.

|

Remarks

The ClipboardCopyOptions property works only when the ClipboardMode property is set to Formatted.

In the following code sample, the data is compatible with the Excel and Csv formats only:

xaml
<dxg:TreeViewControl ClipboardCopyOptions="Excel, Csv"
                     ClipboardMode="Formatted"
                     ... />

For information on how to copy TreeViewControl data to the clipboard, refer to the following DevExpress WPF Grid help topic: Clipboard Management.

See Also

TreeViewControl Class

TreeViewControl Members

DevExpress.Xpf.Grid Namespace