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