PageIsHidden

Version: - boolean  

Summary

Returns True is the page is hidden in the language.

Settings

The value is generated automatically.

Examples

Outputting the template tag

@GetBoolean("PageIsHidden")

Check if tag has a value

@if(!bool.IsNullOrWhiteSpace(GetBoolean("PageIsHidden"))) { @* Tag has value, so let's do something useful here. *@ }

Assign tag to a value for later use

@{ bool storedTag = GetBoolean("PageIsHidden"); }

Outputting the template tag

<!--@PageIsHidden-->

Check if boolean has a value

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