Table of Contents

Class AdvancedPagingSettings

Namespace
Dynamicweb.Ecommerce.Frontend
Assembly
Dynamicweb.Ecommerce.dll
Provides settings for rendering of advanced paging tags.
public class AdvancedPagingSettings
Inheritance
AdvancedPagingSettings
Inherited Members

Constructors

AdvancedPagingSettings()

Initializes a new instance of an object.
public AdvancedPagingSettings()

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