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

DataViewBase.ClipboardCopyOptions Property

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

Namespace: DevExpress.Xpf.Grid

Assembly: DevExpress.Xpf.Grid.v24.2.Core.dll

NuGet Package: DevExpress.Wpf.Grid.Core

#Declaration

public ClipboardCopyOptions ClipboardCopyOptions { get; set; }

#Property Value

Type Description
ClipboardCopyOptions

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

Available values:

Name Description
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

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

<dxg:GridControl>
   <dxg:GridControl.View>
      <dxg:TableView ClipboardCopyOptions="Csv, Excel" />
   </dxg:GridControl.View>
</dxg:GridControl>

Note

The ClipboardCopyOptions property works only when the ClipboardMode property value is ClipboardMode.Formatted.

See Also