我书面方式加载项为PowerPoint 2010中,我使用PowerPoint的两种功能。
Application_PresentationBeforeSave(ByVal Pres As Microsoft.Office.Interop.PowerPoint.Presentation, ByRef Cancel As Boolean)
Application_PresentationSave(ByVal Pres As Microsoft.Office.Interop.PowerPoint.Presentation)
当我执行保存操作(按Ctrl + S)或另存为-上的PowerPoint(文件>另存为)它执行Application_PresentationBeforeSave()
方法。
但我需要区分这两个调用(Ctril + S&另存为),并相应地执行一些任务。 所以,我怎么能区分在BeforeSave方法这两个调用?
至于字,在Application_DocumentBeforeSave(ByVal Doc As Microsoft.Office.Interop.Word.Document, ByRef SaveAsUI As Boolean, ByRef Cancel As Boolean)
存在,其区分该方法是否已被称为另存为或Ctrl + S动作SaveAsUI标志。
那么,有没有标志/财产differtiate同样的事情,在PowerPoint中?