Form.Name
Version: - stringSummary
Returns the name of the form.
Settings
The value is based on the Name
input field for a form.
(Data Lists > Forms > Form > Settings > Name)
Examples
Outputting the template tag
@GetString("Form.Name")
Check if tag has a value
@if(!string.IsNullOrWhiteSpace(GetString("Form.Name"))) {
@* Tag has value, so let's do something useful here. *@
}
Assign tag to a value for later use
@{
string storedTag = GetString("Form.Name");
}
Outputting the template tag
<!--@Form.Name-->
Check if string has a value
<!--@If Defined(@Form.Name)-->
Let's output this tag here: <strong><!--@Form.Name--></strong>
<!--@EndIf(@Form.Name)-->