UserManagement:User.UserAddress.Description

Version: - string  

Summary

Returns the customer Description/Title of the address set.

Settings

The value is based on the Title input field for a user in Addresses tab.

(User Management > User > Addresses > Edit user address > Title)

Examples

Outputting the template tag

@GetString("UserManagement:User.UserAddress.Description")

Check if tag has a value

@if(!string.IsNullOrWhiteSpace(GetString("UserManagement:User.UserAddress.Description"))) { @* Tag has value, so let's do something useful here. *@ }

Assign tag to a value for later use

@{ string storedTag = GetString("UserManagement:User.UserAddress.Description"); }

Outputting the template tag

<!--@UserManagement:User.UserAddress.Description-->

Check if string has a value

<!--@If Defined(@UserManagement:User.UserAddress.Description)--> Let's output this tag here: <strong><!--@UserManagement:User.UserAddress.Description--></strong> <!--@EndIf(@UserManagement:User.UserAddress.Description)-->