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