Text alignment in a table cell

J

jerry chapman

I set the horizontal alignment of text in a cell by using:
objTable.Cell(j, i).Range.ParagraphFormat.Alignment = wdAlignParagraphRight.
How can I set the vertical alignment to "center".
 
S

Stan Scott

Jerry,

objTable.Cell(j,i).VerticalAlignment = wdCellAlignVerticalCenter

Stan Scott
New York City
 
Top