Ecom:CustomerCenter.Paging.Forward
Version: - stringSummary
Returns a forward button.
Settings
The value is generated automatically. The link text/image is based on the Forward button input field and radio buttons in the Paging section for the paragraph module.
(Page > Paragraph > Module tab > Paging panel > Forward button)
Examples
Outputting the template tag
@GetString("Ecom:CustomerCenter.Paging.Forward")
Check if tag has a value
@if(!string.IsNullOrWhiteSpace(GetString("Ecom:CustomerCenter.Paging.Forward"))) {
@* Tag has value, so let's do something useful here. *@
}
Assign tag to a value for later use
@{
string storedTag = GetString("Ecom:CustomerCenter.Paging.Forward");
}
Outputting the template tag
<!--@Ecom:CustomerCenter.Paging.Forward-->
Check if string has a value
<!--@If Defined(@Ecom:CustomerCenter.Paging.Forward)-->
Let's output this tag here: <strong><!--@Ecom:CustomerCenter.Paging.Forward--></strong>
<!--@EndIf(@Ecom:CustomerCenter.Paging.Forward)-->