nca_obj_mouse_dbl_click

Object Functions

Performs a double-click within an object.

int nca_obj_mouse_dbl_click( LPCSTR object, int x, int y, unsigned char modifier );
object The logical name of the GUI object. The object may belong to any class.
x, y The position of the double-click expressed as x and y (pixel) coordinates. Coordinates are relative to the upper left corner of the GUI object.
modifier The keyboard modifier. The available values are MODIF_SHIFT, MODIF_CONTROL, MODIF_ALT or 0 (default).

The nca_obj_mouse_dbl_click function double-clicks a mouse at the specified coordinates inside the object.

Return Values

Oracle NCA Error Codes

Parameterization

The following argument(s) can be parameterized using standard parameterization: object, x, y

Example

In the following example, the nca_obj_mouse_dbl_click function double-clicks the F1_tgbrg300.user_1_1_zoombtn object.

nca_obj_mouse_dbl_click("F1_tgbrg300.user_1_1_zoombtn",0,9,0);