Method DblClickCell
Performs Double Click on the first cell that has the input textUsage
Function DblClickCell(
Integer Row,
Integer Column,
Integer Delay [Optional]
)
Parameters
Row
Type: Integer
Row number
Column
Type: Integer
Column number
Delay (optional)
Type: Integer
Default Value: 0
Delay in milliseconds between two clicks
Returns
True if operation is successful; otherwise, false
Example
VBScript
row = 3
column = 4
Application("Demo").View("DemoView").Object("WeekDays").Table("Calendar").DblClickCell row, column
JavaScript
var row = 3;
var column = 4;
Application("Demo").View("DemoView").Object("WeekDays").Table("Calendar").DblClickCell(row, column);
Comment
Perform Double Click on cell with row 3 and column 4