ItemPublisher:Global.ParagraphId

Version: -  

Summary

Returns the ID of the paragraph.

Settings

The value is generated automatically.

Examples

Outputting the template tag

@GetObject("ItemPublisher:Global.ParagraphId")

Check if tag has a value

@if(!var.IsNullOrWhiteSpace(GetObject("ItemPublisher:Global.ParagraphId"))) { @* Tag has value, so let's do something useful here. *@ }

Assign tag to a value for later use

@{ var storedTag = GetObject("ItemPublisher:Global.ParagraphId"); }

Outputting the template tag

<!--@ItemPublisher:Global.ParagraphId-->

Check if object has a value

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