ParagraphPageID

Version: - string  

Summary

Returns page ID constains the paragraph.

Settings

The value is generated automatically.

Examples

Outputting the template tag

@GetString("ParagraphPageID")

Check if tag has a value

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

Assign tag to a value for later use

@{ string storedTag = GetString("ParagraphPageID"); }

Outputting the template tag

<!--@ParagraphPageID-->

Check if string has a value

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