TraceIndent

Description

Increases the indent level of trace messages. This method is for 4GL JSP Web pages only.

Applies to

psPage object

Syntax

psPage.TraceIndent ( )

Returns

None

Usage

Each call to the TraceIndent method increases the indent level of subsequent messages in the trace buffer. You can reduce the indent level of trace messages by calling TraceOutdent.

Examples

Example 1

This example adds a message to the trace buffer. The message is set off from other event-processing trace messages by the additional indent level coded in this script:

psPage.TraceIndent( );
psPage.Trace(MyVar + " is the value of MyVar at this
		time"); 
psPage.TraceOutdent( );

See also