Ecom:DeliveryRegion.IsDeliveryRegion

Version: - string  

Summary

Retuns True if it's delivery region.

Settings

The value is generated automatically.

Examples

Outputting the template tag

@GetString("Ecom:DeliveryRegion.IsDeliveryRegion")

Check if tag has a value

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

Assign tag to a value for later use

@{ string storedTag = GetString("Ecom:DeliveryRegion.IsDeliveryRegion"); }

Outputting the template tag

<!--@Ecom:DeliveryRegion.IsDeliveryRegion-->

Check if string has a value

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