Clipboard Related Constants

<< Click to display table of contents >>

Clipboard Related Constants

Unit [VCL/FMX]: RVStr / fmxRVStr;

Clipboard Format Names

Names of the Clipboard formats for copying RVF, RTF, URL, HTML.

Syntax

const
  RVFORMATNAME   = 'RichView Format';
  RTFORMATNAME   = 'Rich Text Format';
  URLFORMATNAME  = 'UniformResourceLocator';
  URLFORMATNAMEW  = 'UniformResourceLocatorW';
  HTMLFORMATNAME = 'HTML Format';

Clipboard Format Identifiers

var
  CFRV_RVF, CFRV_RTF, CFRV_HTML, CFRV_URL, CFRV_URLW: Cardinal;
  ...
  CFRV_RVF  := RegisterClipboardFormat(RVFORMATNAME);
  CFRV_RTF  := RegisterClipboardFormat(RTFORMATNAME);
  CFRV_URL  := RegisterClipboardFormat(URLFORMATNAME);
  CFRV_URLW := RegisterClipboardFormat(URLFORMATNAMEW);
  CFRV_HTML := RegisterClipboardFormat(HTMLFORMATNAME);