我已经搜索了一些方法来尝试在VBA for PowerPoint中自动进行拼写检查,但却无法发现任何内容。我正在寻找类似于Word和Excel在自动拼写检查中提供的功能,但对于PowerPoint
我所追求的例程就像(伪):
For Each Mispelling in ActivePresentation.Mispellings
Mispelling.IgnoreAll = True
Next
ActivePresentation.Save
任何帮助将不胜感激!
答案 0 :(得分:3)
无法在PowerPoint中以Progamically方式检查拼写。这是非常不幸的,因为我之前也需要这个(以编程方式拼写拼写检查多个PPT)。最好你可以与Word互操作并将文本发送到那里进行拼写检查,然后发送回PowerPoint,但我认为这将是相当笨重的。