我有一个 VBA 循环,循环遍历 PowerPoint 表格的选定单元格以更新格式。以下几行效果很好:
With objTable.Rows(the_row).Cells(the_col).Shape.TextFrame.TextRange.Font
.Size = 12
.Color = RGB(0, 0, 102)
End With
With objTable.Rows(the_row).Cells(the_col).Shape.TextFrame
.VerticalAnchor = msoAnchorMiddle
End With
我无法找到修改数字格式的语法(更改小数位数、添加逗号等)和更改单元格的内部边距(我可以通过右键单击手动执行 -> 格式形状 -> 文本框 -> 内边距)。通常我使用记录宏选项来获得详细的语法,但我在 PowerPoint 中没有看到该选项。