Word) (Revision.FormatDescription 属性

修订过程中,返回一个表示说明的 字符串 跟踪格式设置更改。 此为只读属性。

语法

expressionFormatDescription

表达 返回“Revision”对象的表达式。

示例

本示例显示文档中修订的所有格式更改的说明。

Sub FmtChanges() 
 Dim revFmtRev As Revision 
 
 For Each revFmtRev In ActiveDocument.Revisions 
 If revFmtRev.FormatDescription <> "" Then 
 MsgBox "Format changes made : " & revFmtRev.FormatDescription 
 End If 
 Next 
End Sub

另请参阅

修订对象

支持和反馈

有关于 Office VBA 或本文档的疑问或反馈? 请参阅 Office VBA 支持和反馈,获取有关如何接收支持和提供反馈的指南。