Gallery.List.PageStart

Version: - integer  

Summary

Returns the number of the first image on current page.

Settings

The value is generated automatically.

Examples

Outputting the template tag

@GetInteger("Gallery.List.PageStart")

Check if tag has a value

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

Assign tag to a value for later use

@{ int storedTag = GetInteger("Gallery.List.PageStart"); }

Outputting the template tag

<!--@Gallery.List.PageStart-->

Check if integer has a value

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