Forum:LastActiveThread.Author.Image.IsInternal
Version: - booleanSummary
Returns True if image of author of last active thread locates within the solution.
Settings
The value is generated automatically.
Examples
Outputting the template tag
@GetBoolean("Forum:LastActiveThread.Author.Image.IsInternal")
Check if tag has a value
@if(!bool.IsNullOrWhiteSpace(GetBoolean("Forum:LastActiveThread.Author.Image.IsInternal"))) {
@* Tag has value, so let's do something useful here. *@
}
Assign tag to a value for later use
@{
bool storedTag = GetBoolean("Forum:LastActiveThread.Author.Image.IsInternal");
}
Outputting the template tag
<!--@Forum:LastActiveThread.Author.Image.IsInternal-->
Check if boolean has a value
<!--@If Defined(@Forum:LastActiveThread.Author.Image.IsInternal)-->
Let's output this tag here: <strong><!--@Forum:LastActiveThread.Author.Image.IsInternal--></strong>
<!--@EndIf(@Forum:LastActiveThread.Author.Image.IsInternal)-->