CellExpression Constructor
CellExpression(int, int)
Creates a new expression with a cell reference with absolute coordinates.
Declaration
public CellExpression(int row, int column)
Public Sub New(row As Integer, column As Integer)
Parameters
Type |
Name |
Description |
int |
row |
Row coordinate of cell
|
int |
column |
Column coordinate of cell
|
CellExpression(int, int, bool, bool)
Creates a new expression with a cell reference.
Declaration
public CellExpression(int row, int column, bool rowRelative, bool columnRelative)
Public Sub New(row As Integer, column As Integer, rowRelative As Boolean, columnRelative As Boolean)
Parameters
Type |
Name |
Description |
int |
row |
Row coordinate of cell
|
int |
column |
Column coordinate of cell
|
bool |
rowRelative |
Whether row coordinate is relative
|
bool |
columnRelative |
Whether the column coordinate is relative
|