Item.Area.[FieldSystemName].Options
Summary
The Item.Area.[FieldSystemName].Options
loop lists options that are available with list item types and lets you display various information about the options.
Remarks
The loop is only available for list item fields.
Examples
Basic usage
Notice the use of @item.GetValue to get data from the loop variable.
If you just write @GetValue, the data will be taken from outside the loop.
Similarly, you have to use @item.GetLoop to use loops inside a loop.
Check if the loop exists
Example of usage
The following general example illustrates how to use a loop construct.
Check if the loop exists
Available tags
Item.Area.[FieldSystemName].Image
Returns the path and a file name of the icon selected for the option.
@GetString("Item.Area.[FieldSystemName].Image")
Item.Area.[FieldSystemName].IsSelected
Returns the value of the option being selected or not (True or False)
@GetString("Item.Area.[FieldSystemName].IsSelected")
Item.Area.[FieldSystemName].Label
Returns the label of the field option.
@GetString("Item.Area.[FieldSystemName].Label")
Item.Area.[FieldSystemName].Value
Returns the value of the field option.
@GetString("Item.Area.[FieldSystemName].Value")