sapgui_table_set_row_selected

Example: sapgui_table_set_row_selectedTable Functions

Selects or unselects a row in a table.

int sapgui_table_set_row_selected( const char *tableID, const char *row, const char *isSelected, [args,] LAST );
tableIDObject ID Strings
row Table row number. The first data row is numbered zero (0). If there is a header row it is numbered (-1).
isSelected "True" or "False"
argsOptional Arguments
LAST A marker indicating the end of the argument list. Not required if Optional Arguments are used.

sapgui_table_set_row_selected sets the selected status of a table row. If isSelected is "True", the row of row number row is selected. If isSelected is "False", the row is unselected.

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.