Facet.OptionResultTotalCount

Version: - string  

Summary

Returns total count of option result. 

Settings

The value is generated automatically.

Examples

Outputting the template tag

@GetString("Facet.OptionResultTotalCount")

Check if tag has a value

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

Assign tag to a value for later use

@{ string storedTag = GetString("Facet.OptionResultTotalCount"); }

Outputting the template tag

<!--@Facet.OptionResultTotalCount-->

Check if string has a value

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