ฉันพยายามทดสอบความสามารถอัตโนมัติของ MS PowerPoint โดยใช้ VBA
สำหรับความต้องการของฉันเซลล์ตารางใด ๆ จะต้องทำเครื่องหมายด้วย ID ควบคุมและส่งกลับโดยใช้ ID นี้ อย่างไรก็ตามฉันไม่สามารถค้นหาวิธีที่เหมาะสมได้ คุณมีความคิดใด ๆ
Dim slide As slide
Dim t As Table
Dim r As Integer
Dim c As Integer
Dim s As Shape
Set slide = Application.ActivePresentation.Slides(1)
Set t = slide.Shapes(1).Table
Set s = t.Cell(1, 1).Shape
' t.Tags and s.Tags aren't accessible...
' Is there any way to put ID into the Cell or Shape of Cell?
...