sapgui_toolbar_press_button

Toolbar Functions

Presses button on toolbar.

int sapgui_toolbar_press_button( const char *description, const char *toolbarID, const char *buttonID, [args,] LAST ); 
description User entered text to aid in understanding script
toolbarIDObject ID Strings
buttonIDObject ID Strings
argsOptional Arguments
LAST A marker indicating the end of the argument list. Not required if Optional Arguments are used.

sapgui_toolbar_press_button emulates a use clicking on a toolbar button.

Return Values

This function returns LR_PASS (0) on success or LR_FAIL (1) on failure.

Parameterization

You can parameterize all string (char type) arguments.

Example

The following example uses sapgui_toolbar_press_button.

sapgui_toolbar_press_button("Activate", 
    "shellcont[0]/shell/shellcont[1]/shell[0]",
    "tbar[1]/btn[8]"), 
    LAST;