GetMultiSelCell Function (Table)

Class

Table.

Action

Returns the first contiguous block of cells that you select in a table.

Availability

This functionality is supported only if you are using the Classic Agent.

Syntax

lcSelectedCells = table.GetMultiSelCell()
Variable Description
lcSelectedCells The selected cells. LIST OF TABLECELL.

Notes

GetMultiSelCell returns only the first-selected contiguous block of cells. It does not return noncontiguous selections. For example, if you select the first row and then the third row of a two-column table, GetMultiSelCell returns the list { {1, 1}, {1, 2} }, not { {1, 1}, {1, 2}, {3, 1}, {3, 2} }, as you might expect.

Example

LIST OF TABLECELL lcCells
lcCells = EmpForm.EmpTable.GetMultiSelCell()