|
|
|
|
|
- Use conditions according to the platforms
- Trace window
- Context menu of the trace window
- Special case
Trace (Function) In french: Trace Displays the requested information (content of a control, for example) in a window opened next to the current window.
Notes: - Trace is useful during the development process to check whether a program runs properly. In the editor, the "Debugger trace" displays the information found in the trace window as well as the full text of errors that occurred.
- trace window displays in both development and execution modes. To avoid a runtime display, use function InTestMode.
Trace("Résultat du calcul: " + ResCalcul)
PROCÉDURE Trace(MessageAAfficher)
IF InTestMode() THEN Trace(MessageAAfficher)
WL.Trace("Lancement de la trace")
Syntax
Trace(<Information> [, <Additional information 1> [... [, <Additional information N>]]])
<Information>: Any type Set of elements that will be displayed in the trace window. <Additional information 1>: Any type (optional) Additional information to be displayed in the trace window. It will be displayed on the same line as <Information>.
<Additional information N>: Any type (optional) Additional information to be displayed in the trace window. It will be displayed on the same line as <Information>.
Remarks Use conditions according to the platforms
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|