String.CRLF

Top  Previous  Next

 

Syntax

function String.CRLF(): string

 

Alternative Names

ibec_CRLF

 

Description

The return value is a 2-character string with the ASCII characters for "carriage return" and "linefeed".

 

Example

execute udsblock

as

begin

  GUI.ShowMessage('This is a multi-line' || String.CRLF() || 'value being displayed in a dialog.');

end