VarDump command: Difference between revisions

From m204wiki
Jump to navigation Jump to search
(Created page with "__TOC__ {| |width="50%"| '''Action:''' |width="50%"| <span class="f_Para">Displays the current values of all macro variables defined duri...")
 
No edit summary
Line 10: Line 10:
<p class="syntax">varDump </p>
<p class="syntax">varDump </p>


<span class="f_Para">The command output is a display of the count of the number of macro variables, followed by an alphabetically ordered list of the individual variables (including [[passing_arguments_to_macros.html|&amp;argstring]]) in name=&quot;value&quot; format. For example: </span>
<span class="f_Para">The command output is a display of the count of the number of macro variables, followed by an alphabetically ordered list of the individual variables (including [[Passing a command argument to a macro|&amp;argstring]]) in name=&quot;value&quot; format. For example</span>


: <span class="f_CodeExample">8 macro variables </span><br />
<p class="syntax"><span class="f_CodeExample">8 macro variables </span>
: <span class="f_CodeExample">&amp;a1</span><span class="f_=XmpPrintTable">=</span><span class="f_CodeExample">&quot;1&quot;  </span><br />
<span class="f_CodeExample">&amp;a1</span><span class="f_=XmpPrintTable">=</span><span class="f_CodeExample">&quot;1&quot;  </span>
: <span class="f_CodeExample">&amp;a2</span><span class="f_=XmpPrintTable">=</span><span class="f_CodeExample">&quot;-1&quot; </span><br />
<span class="f_CodeExample">&amp;a2</span><span class="f_=XmpPrintTable">=</span><span class="f_CodeExample">&quot;-1&quot; </span>
: <span class="f_CodeExample">&amp;a3</span><span class="f_=XmpPrintTable">=</span><span class="f_CodeExample">&quot;666&quot;  </span><br />
<span class="f_CodeExample">&amp;a3</span><span class="f_=XmpPrintTable">=</span><span class="f_CodeExample">&quot;666&quot;  </span>
: <span class="f_CodeExample">&amp;a4</span><span class="f_=XmpPrintTable">=</span><span class="f_CodeExample">&quot;4&quot; </span><br />
<span class="f_CodeExample">&amp;a4</span><span class="f_=XmpPrintTable">=</span><span class="f_CodeExample">&quot;4&quot; </span>
: <span class="f_CodeExample">&amp;a5</span><span class="f_=XmpPrintTable">=</span><span class="f_CodeExample">&quot;5&quot; </span><br />
<span class="f_CodeExample">&amp;a5</span><span class="f_=XmpPrintTable">=</span><span class="f_CodeExample">&quot;5&quot; </span>
: <span class="f_CodeExample">&amp;a6</span><span class="f_=XmpPrintTable">=</span><span class="f_CodeExample">&quot;All work and no play makes jack a dull boy...&quot;  </span><br />
<span class="f_CodeExample">&amp;a6</span><span class="f_=XmpPrintTable">=</span><span class="f_CodeExample">&quot;All work and no play makes jack a dull boy...&quot;  </span>
: <span class="f_CodeExample">&amp;argstring</span><span class="f_=XmpPrintTable">=</span><span class="f_CodeExample">&quot;&quot;  </span><br />
<span class="f_CodeExample">&amp;argstring</span><span class="f_=XmpPrintTable">=</span><span class="f_CodeExample">&quot;&quot;  </span>
: <span class="f_CodeExample">&amp;b</span><span class="f_=XmpPrintTable">=</span><span class="f_CodeExample">&quot;1&quot; </span>
<span class="f_CodeExample">&amp;b</span><span class="f_=XmpPrintTable">=</span><span class="f_CodeExample">&quot;1&quot; </span></p>
|-
|-
| '''Client menu:'''
| '''Client menu:'''

Revision as of 02:34, 18 December 2022

Action:

Displays the current values of all macro variables defined during this Client session. The message is normally displayed in a standard Windows informational box (entitled varDump for Macro). If the macro console is open, however, the message is sent to the console instead.

Syntax:

varDump 

The command output is a display of the count of the number of macro variables, followed by an alphabetically ordered list of the individual variables (including &argstring) in name="value" format. For example

8 macro variables  &a1="1"   &a2="-1"  &a3="666"   &a4="4"  &a5="5"  &a6="All work and no play makes jack a dull boy..."   &argstring=""   &b="1" 

Client menu: --
Introduced: Build 28