<< Click to display table of contents >> Clipboard Related Constants |
Unit [VCL/FMX]: RVStr / fmxRVStr;
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';
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);