K
Kevin B
I have a word document in which I've created a table. I open the table
properties and select the table alignment of center or right.
In VBA the table does not seem to have any alignment property to read
or write. I see nothing in the object browser, nor is there a property
in the VBA reference. I can't determine how Word is setting the
alignment of tables. Does it put it in a frame? Anyone?
Dim ojTable As Word.Table
Dim objRow As Word.Row
Dim objCell As Word.Cell
'(vobjDoc is passed in and is of type Word.Document)
For Each objTable In vobjDoc.Content.Tables
objTable.?
Next
properties and select the table alignment of center or right.
In VBA the table does not seem to have any alignment property to read
or write. I see nothing in the object browser, nor is there a property
in the VBA reference. I can't determine how Word is setting the
alignment of tables. Does it put it in a frame? Anyone?
Dim ojTable As Word.Table
Dim objRow As Word.Row
Dim objCell As Word.Cell
'(vobjDoc is passed in and is of type Word.Document)
For Each objTable In vobjDoc.Content.Tables
objTable.?
Next