API Reference

Class

ExcelRangeDifference

Namespace OfficeIMO.Excel
Assembly OfficeIMO.Excel
Modifiers sealed

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.

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 requiredposition: 0
leftRow System.Int32 requiredposition: 1
leftColumn System.Int32 requiredposition: 2
rightRow System.Int32 requiredposition: 3
rightColumn System.Int32 requiredposition: 4
leftCell System.String requiredposition: 5
rightCell System.String requiredposition: 6
leftValue System.Object requiredposition: 7
rightValue System.Object requiredposition: 8

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.