Page 1 of 1

Problems with tables that I import as part of an RTF documet

Posted: Wed Oct 04, 2006 9:51 am
by Pablito
When I import tables that are parts of RTF documents I lose vertical alignment of text. What is the reason and how can I solve this problem?! Help me! I use Delphi.

Posted: Wed Oct 04, 2006 12:32 pm
by Pablito
And can I in such a way make the second row text verticle in my table after import:

procedure TfrmMain.N1Click(Sender: TObject);
var
i, ItemNo, ParaNo: Integer;
table: TRVTableItemInfo;
begin
try
ItemNo := RichViewEdit1.ItemCount;
for i:=0 to ItemNo-1 do
if RichViewEdit1.GetItemStyle(i)=rvsTable then
begin
ParaNo := i;
system.break;
end;
table := TRVTableItemInfo(RichEdit.GetItem(ParaNo));
table.SetRowVAlign(rvcBottom, 1);
RichViewEdit1.Change;
end;

Posted: Fri Oct 06, 2006 10:13 am
by Sergey Tkachenko
Sorry, vertical text is not supported.