TRACE.WRITELN Function

Syntax

.WriteLn(C text[,C pane])

Arguments

text

The results of the evaluated expression are appended to each line written.

pane

Optional. Default = "User". The name of the window pane to create.

Description

Write line to the trace window.

Discussion

The TRACE.WRITELN() method sends a text string to the current line of the Trace window and then moves the insertion point to the next line in the Trace window.

Send the words "Hello" and "World" to different lines in the Trace window.

trace.writeln("")
trace.writeln("Hello")
trace.writeln("World")
trace.writeln("")

Write a number to the Trace window.

dim cn as N
cn = 12.123
trace.writeln("" + cn)

See Also