Increases the indent level of trace messages. This method is for 4GL JSP Web pages only.
psPage object
psPage.TraceIndent ( )
None
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.
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( );