在 powerpoint 中嵌套表格

Nest tables in powerpoint

是否可以使用 VBA 在 Powerpoint 中嵌套 tables?

喜欢:

 Set table = presentation.Slides(1).Shapes(1).Table

 Set shapeContainingTable = presentation.Slides(1).Shapes(1).Duplicate(1)
 
'not supported operation
 table.Rows(1).Cells(1).Shape = shapeContainingTable

问题是我有一些模板行需要“复制” 在 table 然后填充数据。

现在复制和粘贴预定义的行不能很好地处理合并的单元格 我想知道是否没有一种简单的方法可以将任何形状插入 table 单元格。

有没有在 powerpoint 中嵌套 tables 的经验?

形状容器

或者我可以为形状使用某种列表容器 如果它存在。

一个 table 定义的单元格已经包含一个形状;它不是多个形状的容器,因此无法将 table 插入到 table.

中的单元格中