我正在为 PowerPoint 2010 编写一个加载项,我必须以编程方式创建必须出现在许多幻灯片中的不同注释。添加评论的方法是下面的代码:
Microsoft.Office.Interop.PowerPoint.Application.ActivePresentation.Slides[index].comments.Add(posX,posY,"author","authorInitials","comment");
问题是 DateTime 自动设置为 DateTime.Now 并且 setter 是私有的。我想手动设置 dateTime 属性,但我找不到这样做的方法。
如何设置在 PowerPoint 中以编程方式创建的评论的日期时间?