Ecom:VariantGroupProperty.SystemName

Version: - string  

Summary

Returns variant group property's system name of an unit.

Settings

The value is generated automatically.

Examples

Outputting the template tag

@GetString("Ecom:VariantGroupProperty.SystemName")

Check if tag has a value

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

Assign tag to a value for later use

@{ string storedTag = GetString("Ecom:VariantGroupProperty.SystemName"); }

Outputting the template tag

<!--@Ecom:VariantGroupProperty.SystemName-->

Check if string has a value

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