AllGroups.DwPaging.TypeOfPreviousButton

Version: - string  

Summary

Returns the type of the Previous button in frontend.

(Paragraph > Module settings > Paging panel > 'Previous' button type)

Settings

The value is generated automatically

Remarks

Tag is only available if Activated checkbox is enabled in Extranet module settings in Paging section.

Examples

Outputting the template tag

@GetString("AllGroups.DwPaging.TypeOfPreviousButton")

Check if tag has a value

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

Assign tag to a value for later use

@{ string storedTag = GetString("AllGroups.DwPaging.TypeOfPreviousButton"); }

Outputting the template tag

<!--@AllGroups.DwPaging.TypeOfPreviousButton-->

Check if string has a value

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