0
TRichEdit
のフォーマットされたコンテンツをRaveメモバッファに入れるには、TMemoBuf
?Trichedit to Raveメモバッファ
TRichEdit
のフォーマットされたコンテンツをRaveメモバッファに入れるには、TMemoBuf
?Trichedit to Raveメモバッファ
あなたはフォーマットさテキスト(RTF)とTMemoBuf
にRTFテキストを読み込むために使用TMemoBuf.RTFLoadFromStream
機能を取得するためにTRichEdit
コンポーネントからLines.SaveToStream
機能を使用する必要があります。
var
MemoryStream: TMemoryStream;
begin
MemoryStream:= TMemoryStream.Create;
try
//get the rtf data from the RichEdit into from the Memory stream
RichEdit1.Lines.SaveToStream(MemoryStream);
MemoryStream.Position := 0;
//load the rtf data into the TMemoBuf
MemoBuf1.RTFLoadFromStream(MemoryStream,0);
finally
MemoryStream.Free;
end;
end;