Get your 6-month No-Cost Opt-Out offer for Unlimited software automation!

Method DblClick

Performs Double Click on object

Usage

Function DblClick( 
	Integer X [Optional],
	Integer Y [Optional],
	Integer Delay [Optional]
)

Parameters

X (optional)

Type: Integer

Default Value: 0

Coordinate Offset

Y (optional)

Type: Integer

Default Value: 0

Coordinate Offset

Delay (optional)

Type: Integer

Default Value: 0

Delay in milliseconds between two clicks

Returns

No return value

Example

VBScript

Application("Demo").View("DemoView").Object("DemoObject").DblClick
'Set additional offset and delay
Application("Demo").View("DemoView").Object("DemoObject").DblClick 10, 10, 200

JavaScript

Application("Demo").View("DemoView").Object("DemoObject").DblClick();
// Set additional offset and delay
Application("Demo").View("DemoView").Object("DemoObject").DblClick(10, 10, 200);

Documentation Categories

ZAPTEST

FARM

LOAD