In DsWord, you can align text horizontally in table cells pretty similarly to how you would align standard paragraph text using ParagraphAlignment. While the CellFormat class does have a VerticalAlignment property, it does not have a similar property for horizontal alignment. Therefore, if you want text in a table cell to be left or right aligned, ParagraphAlignment must be used instead.
Example:
table.Rows[0].Cells[0].GetRange().Paragraphs[0].Format.Alignment = ParagraphAlignment.Right;
Tye Glenz