AppItemTitle

Version: - string  

Summary

Returns the title of the app item.

Settings

The value is generated automatically.

Remarks

Avaialble for ContentAppIndexProviders only.

Examples

Outputting the template tag

@GetString("AppItemTitle")

Check if tag has a value

@if(!string.IsNullOrWhiteSpace(GetString("AppItemTitle"))) { @* Tag has value, so let's do something useful here. *@ }

Assign tag to a value for later use

@{ string storedTag = GetString("AppItemTitle"); }

Outputting the template tag

<!--@AppItemTitle-->

Check if string has a value

<!--@If Defined(@AppItemTitle)--> Let's output this tag here: <strong><!--@AppItemTitle--></strong> <!--@EndIf(@AppItemTitle)-->