sapgui_text_edit_get_number_of_unprotected_text_parts

Text Edit Control Functions

Gets the number of unprotected text parts.

int sapgui_text_edit_get_number_of_unprotected_text_parts( const char *description, const char *textEditID, const char *outParamName, [args,] LAST );  
description User entered text to aid in understanding script
textEditIDObject ID Strings
outParamName The name of the parameter in which to store the retrieved value
argsOptional Arguments
LAST A marker indicating the end of the argument list. Not required if Optional Arguments are used.

sapgui_text_edit_get_number_of_unprotected_text_parts assigns the number of unprotected text parts to outParamName.

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

In this example, sapgui_text_edit_get_number_of_unprotected_text_parts assigns the number of unprotected text parts to parameter "partCount."

sapgui_text_edit_get_number_of_unprotected_text_parts(
    "Get unprotected",
    "usr/cntlSRC/shellcont/shell",
    "partCount",
    LAST );
lr_message("%s", lr_eval_string("Part count = {partCount}"));
Action.c(12): Text Edit - Number of unprotected text parts is 1