Sets the row and column indices of the cells in a subselection set.
Supported platforms: Windows only
VBA:
object.SetSubSelection rowMin, rowMax, colMin, colMax
Type: Table
The object this method applies to.
Access: Input-only
Type: Long
The zero-based lower bound of row index.
Access: Input-only
Type: Long
The zero-based upper bound of row index.
Access: Input-only
Type: Long
The zero-based lower bound of column index.
Access: Input-only
Type: Long
The zero-based upper bound of column index.
No return value.
This method sets the row and column indices of the cells in the subselection set. The total number of selected cells is equal to (rowMax - rowMin + 1) * (colMax - colMin + 1).
VBA:
Not available
Visual LISP:
Not available