我用如下代码在表格的第八行第一列插入字符串变量bt,请问如何使bt居中?
Set mytable = ActiveDocument.Tables(1)
With mytable
.Cell(8, 1).Range.InsertAfter bt
 With .Cell(8, 1).Range.Font
 .Bold = False
 .name = "方正小标宋简体"
 .Size = "16"
 End With
End With