[]
Creates a new expression with a range reference expression with absolute coordinates.
public RangeExpression(int row, int column, int rowCount, int columnCount)
Public Sub New(row As Integer, column As Integer, rowCount As Integer, columnCount As Integer)
Type | Name | Description |
---|---|---|
int | row | Starting row coordinate of the range |
int | column | Starting column coordinate of the range |
int | rowCount | Number of rows in the range |
int | columnCount | Number of columns in the range |
Creates a new expression representing a range reference expression.
public RangeExpression(int row, int column, int rowCount, int columnCount, bool rowRelative, bool columnRelative)
Public Sub New(row As Integer, column As Integer, rowCount As Integer, columnCount As Integer, rowRelative As Boolean, columnRelative As Boolean)
Type | Name | Description |
---|---|---|
int | row | Starting row coordinate of the range |
int | column | Starting column coordinate of the range |
int | rowCount | Number of rows in the range |
int | columnCount | Number of columns in the range |
bool | rowRelative | Whether the row coordinates are relative or absolute |
bool | columnRelative | Whether the column coordinates are relative or absolute |