Returns the row and column indexes of the cells in a subselection set.
Supported platforms: Windows only
VBA:
object.GetSubSelection rowMin, rowMax, colMin, colMax
Type: Table
The object this method applies to.
Access: Output-only
Type: Long
The zero-based minimum row index for the subselection set of cells in the table.
Access: Output-only
Type: Long
The zero-based maximum row index for the subselection set of cells in the table.
Access: Output-only
Type: Long
The zero-based minimum column index for the subselection set of cells in the table.
Access: Output-only
Type: Long
The zero-based maximum column index for the subselection set of cells in the table.
No return value.
This method gets 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