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