Form.Fields.[FieldSystemName].Type

Version: - string  

Summary

Returns the field type.

Settings

The value is based on the Type dropdown for a field.

(Data Lists > Forms > Form > Field > Type dropdown)

Examples

Outputting the template tag

@GetString("Form.Fields.[FieldSystemName].Type")

Check if tag has a value

@if(!string.IsNullOrWhiteSpace(GetString("Form.Fields.[FieldSystemName].Type"))) { @* Tag has value, so let's do something useful here. *@ }

Assign tag to a value for later use

@{ string storedTag = GetString("Form.Fields.[FieldSystemName].Type"); }

Outputting the template tag

<!--@Form.Fields.[FieldSystemName].Type-->

Check if string has a value

<!--@If Defined(@Form.Fields.[FieldSystemName].Type)--> Let's output this tag here: <strong><!--@Form.Fields.[FieldSystemName].Type--></strong> <!--@EndIf(@Form.Fields.[FieldSystemName].Type)-->