| View previous topic :: View next topic |
| Author |
Message |
George Kuascha Guest
|
Posted: Tue Dec 16, 2003 1:38 pm Post subject: Resizing columns in WORD tables |
|
|
Does anyone know how to resize columns in a WORD table after it is created?
The only commands that I could find were
Table.Columns.SetWidth(x,wdAdjustFirstColumn);
Table.Columns.Width:= x;
I create four columns in my table and need to resize each one to a different
width before or after I populate the cells.
|
|
| Back to top |
|
 |
Deborah Pate (TeamB) Guest
|
Posted: Tue Dec 16, 2003 4:39 pm Post subject: Re: Resizing columns in WORD tables |
|
|
<
Does anyone know how to resize columns in a WORD table
after it is created?
Tbl.Columns.Item(2).SetWidth(50, wdAdjustNone);
--
Deborah Pate (TeamB) http://delphi-jedi.org
TeamB don't see posts sent via Google or ISPs
Use the real Borland server: newsgroups.borland.com
http://www.borland.com/newsgroups/genl_faqs.html
|
|
| Back to top |
|
 |
|