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?
Sorry my pauper English.
Table alignment lost
-
- Site Admin
- Posts: 17557
- Joined: Sat Aug 27, 2005 10:28 am
- Contact:
Hi Sergey,
I load RTF documents with the follow code:
I am using the version 1.9.48.
[/img]
I load RTF documents with the follow code:
Code: Select all
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.FormatTail;
mm.Format;
finally
St.Free;
end;
end;
I am using the version 1.9.48.
[/img]
-
- Site Admin
- Posts: 17557
- Joined: Sat Aug 27, 2005 10:28 am
- Contact: