WIZML Reference




<WIZSET>

The WIZSET works in a manner identical to the Cold Fusion CFSET tag. For example:  
<WIZSET Color = 'Red'>
<WIZSET Pi = 7/22>
<WIZSET ShortName = Left( LongName, 5 )>



<WIZINCLUDE>

Attribute Description
TEMPLATE Required. Relative path to template to include in the currently executing template.  



<WIZLOOP>, <WIZBREAK>, and <WIZCONTINUE>

The WIZLOOP tag supports several types of loops including:    

The attributes for the WIZLOOP tag are as follows:

Attribute Description
INDEX Name of variable for loop to set on each iteratrion (required for index and list-based loops).  
FROM Index to start looping from.  
TO Index to loop to.  
STEP Step value for each increment (can be positive or negative).  
CONDITION Conditional expression to control whether the loop should be exited.  
  • LIST
A list of CommaText format (this is the format which Delphi-based string lists used to store textual representations of themselves)  
  • STRINGLIST
The name of a parameter created with the SetObjectParameter function which is of type TStringList.
 

The WIZBREAK and WIZCONTINUE tags have no attributes, and can be placed anywhere within a WIZLOOP tag to either exit the loop (WIZBREAK) or move on to the next loop iteration (WIZCONTINUE).


<WIZIF>, <WIZELSEIF>, and <WIZELSE>

The WIZIF, WIZELSEIF, and WIZELSE tags work identically to the corresponding CFML tags. Any valid boolean expression can be used in the WIZIF and WIZELSEIF tags.