TraceOutdent

Description

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

Applies to

psPage object

Syntax

psPage.TraceOutdent ( )

Returns

None

Usage

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

Examples

Example 1

This example adds a message to the trace buffer. It 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