DwParagraphID

Version: - integer  

Summary

Returns the ID of the paragraph.

Settings

The value is generated automatically.

Examples

Outputting the template tag

@GetInteger("DwParagraphID")

Check if tag has a value

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

Assign tag to a value for later use

@{ int storedTag = GetInteger("DwParagraphID"); }

Outputting the template tag

<!--@DwParagraphID-->

Check if integer has a value

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