Returns name of invoice.
The value is generated automaticaly, based on current order ID.
Outputting the template tag
@GetString("Buckaroo.Invoice")
Check if tag has a value
@if(!string.IsNullOrWhiteSpace(GetString("Buckaroo.Invoice"))) {
@* Tag has value, so let's do something useful here. *@
}
Assign tag to a value for later use
@{
string storedTag = GetString("Buckaroo.Invoice");
}
Outputting the template tag
<!--@Buckaroo.Invoice-->
Check if string has a value
<!--@If Defined(@Buckaroo.Invoice)-->