ProductSheetURL

Version: -  

Summary

Returns the URL to a page that generates the product sheet and sends it to the user.

Settings

The value is generated automatically.

Examples

Outputting the template tag

@GetObject("ProductSheetURL")

Check if tag has a value

@if(!var.IsNullOrWhiteSpace(GetObject("ProductSheetURL"))) { @* Tag has value, so let's do something useful here. *@ }

Assign tag to a value for later use

@{ var storedTag = GetObject("ProductSheetURL"); }

Outputting the template tag

<!--@ProductSheetURL-->

Check if object has a value

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