API Reference
Class
ExcelRangeDifference
Represents a single cell-level difference between two worksheet ranges.
Inheritance
- Object
- ExcelRangeDifference
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 ExcelRangeDifference(ExcelRangeDifferenceKind kind, Int32 leftRow, Int32 leftColumn, Int32 rightRow, Int32 rightColumn, String leftCell, String rightCell, Object leftValue, Object rightValue) #Creates a range difference.
Parameters
- kind OfficeIMO.Excel.ExcelRangeDifferenceKind
- leftRow System.Int32
- leftColumn System.Int32
- rightRow System.Int32
- rightColumn System.Int32
- leftCell System.String
- rightCell System.String
- leftValue System.Object
- rightValue System.Object
Inherited Methods
public override Boolean Equals(Object obj) #Returns:
BooleanInherited from Object
Parameters
- obj Object
Properties
public ExcelRangeDifferenceKind Kind { get; } #Difference kind.
public Int32 LeftRow { get; } #1-based row in the left range.
public Int32 LeftColumn { get; } #1-based column in the left range.
public Int32 RightRow { get; } #1-based row in the right range.
public Int32 RightColumn { get; } #1-based column in the right range.
public String LeftCell { get; } #A1 cell reference in the left worksheet.
public String RightCell { get; } #A1 cell reference in the right worksheet.
public Object LeftValue { get; } #Value from the left worksheet.
public Object RightValue { get; } #Value from the right worksheet.