trichview.com

trichview.support




Re: changed table view after inserting data in a table with program


Return to index


Author

Message

Sergey Tkachenko

Posted: 12/04/2003 23:21:16


Can you send me a simple Delphi project showing your problem?



> Second; Which command I use to change table.rows vertical aligment


If you do not want to undo/redo this operation, use


table.Rows[r].VAlign := ...

Or, for the specific cell,

table.Cells[r,c].VAlign := ...


If you want undoable operation, use SetRowVAlign and SetCellVAlign, in

conjunctions with BeginItemModify/EndItemModify/Change:


ItemNo := rve.GetItemNo(table);

rve.BeginItemModify(ItemNo, Data);

table.SetRowVAlign(rvcBottom, r);

rve.EndItemModify(ItemNo, Data);

rve.Change;





Powered by ABC Amber Outlook Express Converter