[]
Initializes a new instance of the RangeReference struct.
public RangeReference(int row, int column, CellRelation position)
Public Sub New(row As Integer, column As Integer, position As CellRelation)
Type | Name | Description |
---|---|---|
int | row | An integer value indicates the row index. |
int | column | An integer value indicates the column index. |
CellRelation | position | A CellRelation value indicates whether the reference is relative and/or absolute. |
Initializes a new instance of the RangeReference struct.
public RangeReference(int row, int column, int row2, int column2)
Public Sub New(row As Integer, column As Integer, row2 As Integer, column2 As Integer)
Type | Name | Description |
---|---|---|
int | row | An integer value indicates the absolute top row index. |
int | column | An integer value indicates the absolute left column index. |
int | row2 | An integer value indicates the absolute bottom row index. |
int | column2 | An integer value indicates the absolute right column index. |
Initializes a new instance of the RangeReference struct.
public RangeReference(int row, int column, CellRelation topLeftPosition, int row2, int column2, CellRelation bottomRightPosition)
Public Sub New(row As Integer, column As Integer, topLeftPosition As CellRelation, row2 As Integer, column2 As Integer, bottomRightPosition As CellRelation)
Type | Name | Description |
---|---|---|
int | row | An integer value indicates the top row index. |
int | column | An integer value indicates the left column index. |
CellRelation | topLeftPosition | A CellRelation value indicates whether the top-left reference is relative and/or absolute. |
int | row2 | An integer value indicates the bottom row index. |
int | column2 | An integer value indicates the right column index. |
CellRelation | bottomRightPosition | A CellRelation value indicates whether the bottom-right reference is relative and/or absolute. |
Initializes a new instance of the RangeReference struct.
public RangeReference(CellReference topLeft, CellReference bottomRight)
Public Sub New(topLeft As CellReference, bottomRight As CellReference)
Type | Name | Description |
---|---|---|
CellReference | topLeft | The top left reference. |
CellReference | bottomRight | The bottom right reference. |