Table of Contents

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

int

LinkGenerator

Gets or sets the function that generates the URL to the given page.
public Func<int, string> LinkGenerator { get; set; }

Property Value

Func<int, string>

TagPrefix

Gets or sets the tag prefix.
public string TagPrefix { get; set; }

Property Value

string

Template

Gets or sets the target template.
public Template Template { get; set; }

Property Value

Template

TotalPages

Gets or sets the 1-based value representing the total number of pages.
public int TotalPages { get; set; }

Property Value

int
To top