Ecom:Order.PaymentMethod.RecurringSupport

Version: - string  

Summary

Returns True if the payment method supports recurring order creation.

Settings

The value is generated automatically.

Examples

Outputting the template tag

@GetString("Ecom:Order.PaymentMethod.RecurringSupport")

Check if tag has a value

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

Assign tag to a value for later use

@{ string storedTag = GetString("Ecom:Order.PaymentMethod.RecurringSupport"); }

Outputting the template tag

<!--@Ecom:Order.PaymentMethod.RecurringSupport-->

Check if string has a value

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