API Reference

Class

WordComparisonFinding

Namespace OfficeIMO.Word
Assembly OfficeIMO.Word
Modifiers sealed

Represents one machine-readable difference between two Word documents.

Inheritance

  • Object
  • WordComparisonFinding

Usage

This type appears in these public API surfaces even when no hand-authored example is attached directly to the page.

Returned or exposed by

Constructors

public WordComparisonFinding(WordComparisonScope scope, WordComparisonChangeKind changeKind, String location, Nullable<Int32> sourceIndex, Nullable<Int32> targetIndex, String sourceText, String targetText, String message) #

Creates a new comparison finding.

Parameters

scope OfficeIMO.Word.WordComparisonScope requiredposition: 0
Document area where the change was found.
changeKind OfficeIMO.Word.WordComparisonChangeKind requiredposition: 1
Kind of change found.
location System.String requiredposition: 2
Stable, human-readable path such as paragraph[0] or table[1]/row[2]/cell[0].
sourceIndex System.Nullable{System.Int32} requiredposition: 3
Index in the source collection when available.
targetIndex System.Nullable{System.Int32} requiredposition: 4
Index in the target collection when available.
sourceText System.String requiredposition: 5
Source text when the finding has textual content.
targetText System.String requiredposition: 6
Target text when the finding has textual content.
message System.String requiredposition: 7
Short diagnostic message suitable for logs and review reports.

Properties

public WordComparisonScope Scope { get; } #

Document area where the change was found.

public WordComparisonChangeKind ChangeKind { get; } #

Kind of change found.

public String Location { get; } #

Stable, human-readable path such as paragraph[0] or table[1]/row[2]/cell[0].

public Nullable<Int32> SourceIndex { get; } #

Index in the source collection when available.

public Nullable<Int32> TargetIndex { get; } #

Index in the target collection when available.

public String SourceText { get; } #

Source text when the finding has textual content.

public String TargetText { get; } #

Target text when the finding has textual content.

public String Message { get; } #

Short diagnostic message suitable for logs and review reports.