Forum:LastReply.Author.Image.IsInternal

Version: - string  

Summary

Returns True if image of author of last reply locates within the solution

Settings

The value is generated automatically.

Examples

Outputting the template tag

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

Check if tag has a value

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

Outputting the template tag

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

Check if string has a value

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