CustomField.SystemName

Version: - string  

Summary

Returns system name of the user custom field.

Settings

The value is generated automatically.

Examples

Outputting the template tag

@GetString("CustomField.SystemName")

Check if tag has a value

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

Assign tag to a value for later use

@{ string storedTag = GetString("CustomField.SystemName"); }

Outputting the template tag

<!--@CustomField.SystemName-->

Check if string has a value

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