Action
Makes a cell visible, then CTRL+clicks in its center to create a multiple selection.
Availability
This functionality is supported only if you are using the Classic Agent.
Syntax
table.MultiClickCell (cell [,iButton, iXpos, iYpos, iCount])
Variable
|
Description
|
Cell
|
The cell to click in.
TABLECELL.
|
iButton
|
Optional: The mouse button to press: Windows: 1 for left (default), 2 for right, and 3 for center.
INTEGER.
|
iXpos
|
Optional: The horizontal coordinate (relative to the cell) at which to click. If you specify iXpos, you must also specify iYpos. The default is 0.
INTEGER.
|
iYpos
|
Optional: The vertical coordinate (relative to the cell) at which to click. If you specify iYpos, you must also specify iXpos. The default is 0.
INTEGER.
|
iCount
|
Optional: The number of times to click the mouse. The default is 1.
INTEGER.
|
Notes
MultiClickCell clicks in the specified cell allowing for multiple cell selection if the table supports it.
Example
EmpForm.EmpTable.MultiClickCell ( {2,3} )