Ecom:Group.ID

Version: -  

Summary

Returns the ID of the group.

Settings

The value is generated automatically.

Examples

Outputting the template tag

@GetObject("Ecom:Group.ID")

Check if tag has a value

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

Assign tag to a value for later use

@{ var storedTag = GetObject("Ecom:Group.ID"); }

Outputting the template tag

<!--@Ecom:Group.ID-->

Check if object has a value

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