[]
Creates a new expression with an external range reference with absolute coordinates.
public ExternalRangeExpression(object source, int row, int column, int rowCount, int columnCount)
Public Sub New(source As Object, row As Integer, column As Integer, rowCount As Integer, columnCount As Integer)
Type | Name | Description |
---|---|---|
object | source | Source of the range |
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 an external range reference.
public ExternalRangeExpression(object source, int row, int column, int rowCount, int columnCount, bool rowRelative, bool columnRelative)
Public Sub New(source As Object, row As Integer, column As Integer, rowCount As Integer, columnCount As Integer, rowRelative As Boolean, columnRelative As Boolean)
Type | Name | Description |
---|---|---|
object | source | Source of the range |
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 |
bool | columnRelative | Whether the column coordinates are relative |