nca_button_double_press
| Button Object Functions |
Performs a double press on a button object.
int nca_button_double_press( LPCSTR name );
| name | The logical name of the button. |
The nca_button_double_press function performs a double press on the specified push button.
Return Values
Parameterization
The following variable can be parameterized using standard parameterization: name
Example
In the following example, the nca_button_double_pressfunction pushes a button twice in the Cash Management section.
nca_set_window("Navigator - Cash Management, Vision Operations (USA)");
nca_button_press("DESKTOP_ICON2_0");
nca_button_double_press("DESKTOP_ICON2_0");

