Action
Makes a row visible, then clicks on its header.
Availability
This functionality is supported only if you are using the Open Agent.
Syntax
table.ClickRow (iRow [,iButton, iXpos, iYpos, iCount])
Variable
|
Description
|
iRow
|
The row to click in.
INTEGER.
|
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 row) 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 row) 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
Typically, the header of a row is the name of the row, such as row 3. Clicking the row header generally selects the entire row.
Example
EmpForm.EmpTable.ClickRow (2)