Skip to main content
A newer version of this page is available. .

SpreadsheetClipboardOptions.PasteFormat Property

Gets or sets the format to use when pasting data from the clipboard onto the Spreadsheet control.

Namespace: DevExpress.Xpf.Spreadsheet

Assembly: DevExpress.Xpf.Spreadsheet.v20.2.dll

NuGet Packages: DevExpress.WindowsDesktop.Wpf.Spreadsheet, DevExpress.Wpf.Spreadsheet

Declaration

public ClipboardPasteFormat PasteFormat { get; set; }

Property Value

Type Description
ClipboardPasteFormat

An enumeration member that specifies the clipboard format.

Property Paths

You can access this nested property as listed below:

Object Type Path to PasteFormat
SpreadsheetControlOptions
.Clipboard .PasteFormat

Remarks

When the PasteFormat property is set to Default, the Spreadsheet control inserts data from the clipboard in the most appropriate format. When selecting the clipboard format to use, the Spreadsheet checks each format from the ClipboardPasteFormat enumeration to determine if the clipboard currently contains data in this format. If a matching format is found, the Spreadsheet stops the check and uses this format to retrieve data. Below is the order in which the Spreadsheet goes through its list of supported formats:

  • ClipboardPasteFormat.Biff8
  • ClipboardPasteFormat.Biff12
  • ClipboardPasteFormat.Biff5
  • ClipboardPasteFormat.Csv
  • ClipboardPasteFormat.TabDelimited
  • ClipboardPasteFormat.DrawingObject
  • ClipboardPasteFormat.Metafile
  • ClipboardPasteFormat.Image
  • ClipboardPasteFormat.ImagesFromFiles

Use the PasteFormat property to explicitly specify the clipboard format the Spreadsheet control should use to insert data. For example, if you want to paste strings longer than 255 characters from the clipboard, you should set the PasteFormat property to Biff12. Otherwise, the Spreadsheet control uses Biff8 (XLS) format to retrieve data and the inserted strings get truncated to 255 characters.

<dxsps:SpreadsheetControl.Options>
    <dxsps:SpreadsheetControlOptions>
        <dxsps:SpreadsheetControlOptions.Clipboard>
            <dxsps:SpreadsheetClipboardOptions PasteFormat="Biff12"/>
        </dxsps:SpreadsheetControlOptions.Clipboard>
    </dxsps:SpreadsheetControlOptions>
</dxsps:SpreadsheetControl.Options>
See Also