GetSubSelection Method

Returns the row and column indexes of the cells in a subselection set.

See Also | Example

Signature

object.GetSubSelection(rowMin, rowMax, colMin, colMax)

Object

Table
The object or objects this method applies to.

rowMin

Long; zero-based minimum row index for the subselection set of cells in the table

rowMax

Long; zero-based maximum row index for the subselection set of cells in the table

colMin

Long; zero-based minimum column index for the subselection set of cells in the table

colMax

Long; zero-based maximum column index for the subselection set of cells in the table

Remarks

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).

 

   Comments?