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