Forum:Global.ParagraphID

Version: - integer  

Summary

Returns ID of the parent Paragraph housing the forum module.

Settings

The value is generated automatically.

Examples

Outputting the template tag

@GetInteger("Forum:Global.ParagraphID")

Check if tag has a value

@if(!int.IsNullOrWhiteSpace(GetInteger("Forum:Global.ParagraphID"))) { @* Tag has value, so let's do something useful here. *@ }

Assign tag to a value for later use

@{ int storedTag = GetInteger("Forum:Global.ParagraphID"); }

Outputting the template tag

<!--@Forum:Global.ParagraphID-->

Check if integer has a value

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