EscapeControlCodes method: IntBroker class

Syntax

EscapeControlCodes(string)

Description

Use the EscapeControlCodes method to perform the necessary checks and escapes prior to populating the rowset. You can use this method only for the field that could possibly have these control codes.

Parameters

Parameter Description

string

Specify a string for which you want to add control codes.

Returns

A string with escape control codes.

Example

return string = %IntBroker.EscapeControlCodes(string);

local string &myString = “this is a string”;
&string = %IntBroker.EscapeControlCodes(&myString);