Form.ColumnShiftFormFieldID

Version: - integer  

Summary

Returns the ID of the form field that is selected to end first column.

Settings

The value is generated automatically but is based on the Column change after field selection in the form settings.

(Modules > Forms for editors > Form > Settings > Column change after)

Examples

Outputting the template tag

@GetInteger("Form.ColumnShiftFormFieldID")

Check if tag has a value

@if(!int.IsNullOrWhiteSpace(GetInteger("Form.ColumnShiftFormFieldID"))) { @* Tag has value, so let's do something useful here. *@ }

Assign tag to a value for later use

@{ int storedTag = GetInteger("Form.ColumnShiftFormFieldID"); }

Outputting the template tag

<!--@Form.ColumnShiftFormFieldID-->

Check if integer has a value

<!--@If Defined(@Form.ColumnShiftFormFieldID)--> Let's output this tag here: <strong><!--@Form.ColumnShiftFormFieldID--></strong> <!--@EndIf(@Form.ColumnShiftFormFieldID)-->