[]
Creates a new expression with a cell reference with absolute coordinates.
public CellExpression(int row, int column)
Public Sub New(row As Integer, column As Integer)
| Type | Name | Description |
|---|---|---|
| int | row | Row coordinate of cell |
| int | column | Column coordinate of cell |
Creates a new expression with a cell reference.
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)
| 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 |