对齐字 table

Align Word table

有没有办法对齐 table 本身,而不是它的内容?

我想要这个:

但是不是这个

我尝试了以下(代码用于 Python,但对于 C# 的 VBA 几乎相同):

word_table = self._word_app.Selection.Tables(1)
    
word_table.Range.ParagraphFormat.Alignment = client.constants.wdAlignParagraphCenter
word_table.Range.Paragraphs.Alignment = client.constants.wdAlignParagraphCenter

word_table.Select()
self._word_app.Selection.Range.ParagraphFormat.Alignment = client.constants.wdAlignParagraphCenter

但它只对齐内容。 知道如何让它发挥作用吗?

word_table.Rows.Alignment = client.constants.wdAlignRowCenter