本文整理自网络,侵删。
//delphi从TRichEdit获得RTF格式文本
function GetRTF(RE: TRichedit): string;
var
strStream: TStringStream;
begin
strStream := TStringStream.Create('') ;
try
RE.PlainText := False;
RE.Lines.SaveToStream(strStream) ;
Result := strStream.DataString;
finally
strStream.Free
end;
end;
相关阅读 >>
Delphi中使用低层钩子 屏蔽win、ctrl+esc、alt+tab、alt+f4
更多相关阅读请进入《Delphi》频道 >>