返回一个
Comments 对象,该对象代表批注的集合。
语法
表达式.Comments
表达式 一个代表 SlideRange 对象的变量。
返回值
Comments
示例
以下示例在幻灯片中添加一个批注。
示例代码 |
function AddNewComment () {
ActivePresentation.Slides.Item(1).Comments.Add(1, 1, "John Doe", "jd", "Please check this spelling again before the next draft.")
}
|