DwPaging.PageSize
Version: - integerSummary
Returns the size of the page in the frontend view.
Settings
The value is based on the Results
per page field in the paragraph settings of the module.
(Paragraph > Module settings > Paging panel > Results per page)
Examples
Outputting the template tag
@GetInteger("DwPaging.PageSize")
Check if tag has a value
@if(!int.IsNullOrWhiteSpace(GetInteger("DwPaging.PageSize"))) {
@* Tag has value, so let's do something useful here. *@
}
Assign tag to a value for later use
@{
int storedTag = GetInteger("DwPaging.PageSize");
}
Outputting the template tag
<!--@DwPaging.PageSize-->
Check if integer has a value
<!--@If Defined(@DwPaging.PageSize)-->
Let's output this tag here: <strong><!--@DwPaging.PageSize--></strong>
<!--@EndIf(@DwPaging.PageSize)-->