LeadsMail:Location.Coordinates

Version: - string  

Summary

Returns coordinates of the lead geolocation.

Settings

The value is generated automatically.

Examples

Outputting the template tag

@GetString("LeadsMail:Location.Coordinates")

Check if tag has a value

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

Assign tag to a value for later use

@{ string storedTag = GetString("LeadsMail:Location.Coordinates"); }

Outputting the template tag

<!--@LeadsMail:Location.Coordinates-->

Check if string has a value

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