FacetGroup.Type

Version: - string  

Summary

Returns type of the facet group.

Settings

The value is generated automatically.

Examples

Outputting the template tag

@GetString("FacetGroup.Type")

Check if tag has a value

@if(!string.IsNullOrWhiteSpace(GetString("FacetGroup.Type"))) { @* Tag has value, so let's do something useful here. *@ }

Assign tag to a value for later use

@{ string storedTag = GetString("FacetGroup.Type"); }

Outputting the template tag

<!--@FacetGroup.Type-->

Check if string has a value

<!--@If Defined(@FacetGroup.Type)--> Let's output this tag here: <strong><!--@FacetGroup.Type--></strong> <!--@EndIf(@FacetGroup.Type)-->