ItemCreator:Global.ParagraphId

Version: -  

Summary

Returns the value from the...

Settings

The value is based on...

Examples

Outputting the template tag

@GetObject("ItemCreator:Global.ParagraphId")

Check if tag has a value

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

Assign tag to a value for later use

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

Outputting the template tag

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

Check if object has a value

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