DocumentBase.Compare 方法

显示修订标记以指出该文档与其他文档的不同之处。

命名空间:  Microsoft.Office.Tools.Word
程序集:  Microsoft.Office.Tools.Word.v4.0.Utilities(在 Microsoft.Office.Tools.Word.v4.0.Utilities.dll 中)

语法

声明
Public Sub Compare ( _
    name As String, _
    ByRef authorName As Object, _
    ByRef compareTarget As Object, _
    ByRef detectFormatChanges As Object, _
    ByRef ignoreAllComparisonWarnings As Object, _
    ByRef addToRecentFiles As Object, _
    ByRef removePersonalInformation As Object, _
    ByRef removeDateAndTime As Object _
)
public void Compare(
    string name,
    ref Object authorName,
    ref Object compareTarget,
    ref Object detectFormatChanges,
    ref Object ignoreAllComparisonWarnings,
    ref Object addToRecentFiles,
    ref Object removePersonalInformation,
    ref Object removeDateAndTime
)

参数

  • name
    类型:System.String
    要与该文档进行比较的文档的名称。
  • authorName
    类型:System.Object%
    与比较操作生成的区别关联的审阅者姓名。如果未指定的话,则该值默认为已修订文档的作者姓名,如果没有作者信息的话,则为字符串“Comparison”。
  • detectFormatChanges
    类型:System.Object%
    如果为 true(默认值),则在比较结果中包括检测到的格式更改。
  • ignoreAllComparisonWarnings
    类型:System.Object%
    如果为 true,则对文档进行比较,而不通知用户有问题存在。默认值为 false。
  • addToRecentFiles
    类型:System.Object%
    如果为 true,则将该文档添加到**“文件”**菜单上最近使用的文件的列表中。
  • removePersonalInformation
    类型:System.Object%
    如果应当从指定的文件中移除个人信息,则为 true。默认值为 false。
  • removeDateAndTime
    类型:System.Object%
    如果为 true,则从修订中移除日期和时间戳信息;如果为 false,则不从修订中移除日期和时间戳信息。

备注

可选参数

有关可选参数的信息,请参见Office 解决方案中的可选参数

示例

下面的代码示例使用 Compare 方法将当前文档与指定的文档进行比较,并显示修订标记以指示这些文档的不同之处。 此示例假定,文件 Sales1.docx 在当前计算机上存在于位置 C:\Docs。 若要使用此示例,请从文档级项目内的 ThisDocument 类中运行此示例。

Private Sub DocumentCompare()

    Me.Compare("C:\Docs\Sales1.docx", _
        CompareTarget:=Word.WdCompareTarget.wdCompareTargetNew, _
        AddToRecentFiles:=False)
End Sub
private void DocumentCompare()
{
    object compareTarget = Word.WdCompareTarget.wdCompareTargetNew;
    object addToRecentFiles = false;

    this.Compare("C:\\Docs\\Sales1.docx", ref missing, ref compareTarget, 
        ref missing, ref missing, ref addToRecentFiles, ref missing, 
        ref missing);
}

.NET Framework 安全性

请参见

参考

DocumentBase 类

Microsoft.Office.Tools.Word 命名空间