ItemCreator:Global.PagingPosition

Version: -  

Summary

Returns the page number of paging.

Settings

The value is generated automatically.

Examples

Outputting the template tag

@GetObject("ItemCreator:Global.PagingPosition")

Check if tag has a value

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

Assign tag to a value for later use

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

Outputting the template tag

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

Check if object has a value

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