UserManagement:User.Item.[FieldSystemName].Option.IsSelected

Version: - string  

Summary

Returns the value of the option being selected or not (True or False).

Settings

The value is generated automatically.

Examples

Outputting the template tag

@GetString("UserManagement:User.Item.[FieldSystemName].Option.IsSelected")

Check if tag has a value

@if(!string.IsNullOrWhiteSpace(GetString("UserManagement:User.Item.[FieldSystemName].Option.IsSelected"))) { @* Tag has value, so let's do something useful here. *@ }

Assign tag to a value for later use

@{ string storedTag = GetString("UserManagement:User.Item.[FieldSystemName].Option.IsSelected"); }

Outputting the template tag

<!--@UserManagement:User.Item.[FieldSystemName].Option.IsSelected-->

Check if string has a value

<!--@If Defined(@UserManagement:User.Item.[FieldSystemName].Option.IsSelected)--> Let's output this tag here: <strong><!--@UserManagement:User.Item.[FieldSystemName].Option.IsSelected--></strong> <!--@EndIf(@UserManagement:User.Item.[FieldSystemName].Option.IsSelected)-->