Forum:FirstAnswer.Author.Image.HasImage

Version: - string  

Summary

Returns True if author of the first answer has image

Settings

The value is generated automatically.

Examples

Outputting the template tag

@GetString("Forum:FirstAnswer.Author.Image.HasImage")

Check if tag has a value

@if(!string.IsNullOrWhiteSpace(GetString("Forum:FirstAnswer.Author.Image.HasImage"))) { @* Tag has value, so let's do something useful here. *@ }

Assign tag to a value for later use

@{ string storedTag = GetString("Forum:FirstAnswer.Author.Image.HasImage"); }

Outputting the template tag

<!--@Forum:FirstAnswer.Author.Image.HasImage-->

Check if string has a value

<!--@If Defined(@Forum:FirstAnswer.Author.Image.HasImage)--> Let's output this tag here: <strong><!--@Forum:FirstAnswer.Author.Image.HasImage--></strong> <!--@EndIf(@Forum:FirstAnswer.Author.Image.HasImage)-->