DoubleClick
void DoubleClick(String control)Description
Simulates a double-click action on the specified control.
This is useful for items in lists, tree views, or any control that requires double-click interaction.
Parameter
- control - The identifier or name of the control to double-click.
Example
void main()
{
DoubleClick("LIST_ITEM_1"); // Double-clicks the first item in the list
}