Field.Type.TextInput

Version: - string  

Summary

Returns the current field type.

Settings

The value is generated automatically.

Examples

Outputting the template tag

@GetString("Field.Type.TextInput")

Check if tag has a value

@if(!string.IsNullOrWhiteSpace(GetString("Field.Type.TextInput"))) { @* Tag has value, so let's do something useful here. *@ }

Assign tag to a value for later use

@{ string storedTag = GetString("Field.Type.TextInput"); }

Outputting the template tag

<!--@Field.Type.TextInput-->

Check if string has a value

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