语法
表达式.Updates
表达式 一个返回 Range 对象的表达式。
说明
使用 Updates 属性可返回 CoAuthUpdates 集合。
示例
下面的代码示例显示活动文档的第一个段落中的可用更新数量。
let countOfUpdates = ActiveDocument.Paragraphs.Item(1).Range.Updates.Count MsgBox("The number of updates is " + countOfUpdates)