sapgui_text_edit_multiple_files_dropped

Text Edit Control Functions

Emulates dropping files in the text edit control.

int sapgui_text_edit_multiple_files_dropped( const char *description, const char *textEditID, listOfFiles, [args,]  LAST );
description User entered text to aid in understanding script
textEditIDObject ID Strings
listOfFiles A list of full path names of the files to be dropped
argsOptional Arguments
LAST A marker indicating the end of the argument list. Not required if Optional Arguments are used.

sapgui_text_edit_multiple_files_dropped emulates dragging the files in listOfFiles to the text edit control and dropping them.

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

This example shows the use of sapgui_text_edit_multiple_files_dropped.

sapgui_text_edit_multiple_files_dropped(
    "usr/cntlSRC/shellcont/shell",
    "firstFile.txt", "secondFile.txt", "thirdFile.txt",
    LAST );