<WIZSET Color = 'Red'> <WIZSET Pi = 7/22> <WIZSET ShortName = Left( LongName, 5 )>
Attribute | Description |
TEMPLATE | Required. Relative path to template to include in the currently executing template. |
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. |
|
A list of CommaText format (this is the format which Delphi-based string lists used to store textual representations of themselves) |
|
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).
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.