Search found 2 matches

by Rogerio
Fri Feb 04, 2011 11:11 am
Forum: Support
Topic: Table alignment lost
Replies: 3
Views: 9267

Hi Sergey,

I load RTF documents with the follow code:


procedure TItemEditTexts.SetConteudo(value : TStringList);
Var
St: TStream;
begin
St := TMemoryStream.Create;
// mm is a TRichViewEdit
try
value.SaveToStream(St);
St.Seek(0,soBeginning);
mm.LoadFromStream(St, rvynaAuto);
mm ...
by Rogerio
Thu Feb 03, 2011 5:36 pm
Forum: Support
Topic: Table alignment lost
Replies: 3
Views: 9267

Table alignment lost

Oi People!

I am loading a document into the Richviewedit. This document has three tables with diferentes alignment: one in the center, other on the left and the last on the right. When the document is showed, all tables appear aligned on the left. What do I need to do to solver this problem ...