Authorizenet.x_company

Version: - string  

Summary

Returns company name of the billing data.

Settings

The value is based on Company field of billing section the cart.

Examples

Outputting the template tag

@GetString("Authorizenet.x_company")

Check if tag has a value

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

Assign tag to a value for later use

@{ string storedTag = GetString("Authorizenet.x_company"); }

Outputting the template tag

<!--@Authorizenet.x_company-->

Check if string has a value

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