FilepublishFileIcon

Version: - string  

Summary

Returns the icon for the current folder.

Settings

The value is generated automatically.

Examples

Outputting the template tag

@GetString("FilepublishFileIcon")

Check if tag has a value

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

Assign tag to a value for later use

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

Outputting the template tag

<!--@FilepublishFileIcon-->

Check if string has a value

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