Gallery.Image.FirstThumbLarge.Width
Version: - integerSummary
Returns the width in pixels of the detail image for the first image listed on the page.
Settings
The value is generated automatically.
Examples
Outputting the template tag
@GetInteger("Gallery.Image.FirstThumbLarge.Width")
Check if tag has a value
@if(!int.IsNullOrWhiteSpace(GetInteger("Gallery.Image.FirstThumbLarge.Width"))) {
@* Tag has value, so let's do something useful here. *@
}
Assign tag to a value for later use
@{
int storedTag = GetInteger("Gallery.Image.FirstThumbLarge.Width");
}
Outputting the template tag
<!--@Gallery.Image.FirstThumbLarge.Width-->
Check if integer has a value
<!--@If Defined(@Gallery.Image.FirstThumbLarge.Width)-->
Let's output this tag here: <strong><!--@Gallery.Image.FirstThumbLarge.Width--></strong>
<!--@EndIf(@Gallery.Image.FirstThumbLarge.Width)-->