Forum:FirstAnswer.Author.Image.IsInternal

Version: - string  

Summary

Returns True if image of author of first answer locates within the solution

Settings

The value is generated automatically.

Examples

Outputting the template tag

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

Check if tag has a value

@if(!string.IsNullOrWhiteSpace(GetString("Forum:FirstAnswer.Author.Image.IsInternal"))) { @* 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.IsInternal"); }

Outputting the template tag

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

Check if string has a value

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