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