Class PagingSettings
- Namespace
- Dynamicweb.Content.Items.Rendering
- Assembly
- Dynamicweb.dll
Represents paging settings.
public class PagingSettings
- Inheritance
-
PagingSettings
- Inherited Members
Constructors
PagingSettings()
Initializes a new instance of an object.
public PagingSettings()
Properties
CurrentPage
Gets or sets the 1-based value representing the current page number.
public int CurrentPage { get; set; }
Property Value
LinkGenerator
Gets or sets the function that generates the URL to the given page.
public Func<int, string> LinkGenerator { get; set; }
Property Value
TagPrefix
Gets or sets the tag prefix.
public string TagPrefix { get; set; }
Property Value
Template
Gets or sets the target template.
public Template Template { get; set; }
Property Value
TotalPages
Gets or sets the 1-based value representing the total number of pages.
public int TotalPages { get; set; }