corelibraries-devexpress-dot-export-dot-clipboardoptions-7ec5a6fd.md
Gets or sets whether data is copied to the Clipboard as plain text or along with its format settings (in RTF, HTML, XLS (Biff8), CSV, UnicodeText and Text formats).
Namespace : DevExpress.Export
Assembly : DevExpress.Data.v25.2.dll
NuGet Package : DevExpress.Data
[DefaultValue(ClipboardMode.Default)]
public ClipboardMode ClipboardMode { get; set; }
<DefaultValue(ClipboardMode.Default)>
Public Property ClipboardMode As ClipboardMode
| Type | Default | Description |
|---|---|---|
| ClipboardMode | Default |
A ClipboardMode enumerator value that specifies whether or not data copied from the target control should be stored together with its format settings.
|
Available values:
| Name | Description |
|---|---|
| Default |
Equal to the ClipboardMode.PlainText value.
| | PlainText |
Copied data is stored in Clipboard as simple plain text.
| | Formatted |
Data is copied to the Clipboard together with its format settings.
|
Set the ClipboardMode property to ClipboardMode.Formatted to allow data to be copied to the Clipboard along with format settings. In this mode, data is copied in the RTF, HTML, XLS (Biff8), CSV, UnicodeText and Text formats simultaneously. To disable one or several of these formats, use the following settings:
See Clipboard - Copy and Paste Operations. Data Formatting to learn more.
See Also