trichview.support.examples
Re: Copying from one TrichViewEdit to another |
Author |
Message |
Sergey Tkachenko |
Posted: 04/04/2003 18:30:03 Yes, you can use AppendFrom, but AppendFrom does not copy tables and controls. It's better to copy via memory stream: var Stream: TMemoryStream; Stream := TMemoryStream.Create; rvsource.SaveRVFToStream(Stream, False); Stream.Position := 0; rvdest.LoadRVFFromStream(Stream); Stream.Free; rvdest.FormatTail; PS: please post all questions to trichview.support group > TCustomRichView.AppendFrom > > Appends contents from another RichView instance > > |
Powered by ABC Amber Outlook Express Converter