Table of Contents

Class ItemListSettings

Namespace
Dynamicweb.Content.Items.Rendering
Assembly
Dynamicweb.dll

Represents an item list settings.

public class ItemListSettings
Inheritance
ItemListSettings
Inherited Members

Constructors

ItemListSettings()

Initializes a new instance of an object.

public ItemListSettings()

Properties

CurrentPage

Gets or sets the current page number.

public int CurrentPage { get; set; }

Property Value

int

Remarks

This value is 1-based and if it's lower than 1, the first page is assumed.

Fields

Gets or sets the list of fields to render.

public IEnumerable<string> Fields { get; set; }

Property Value

IEnumerable<string>

GenericTagsOnly

Gets or sets value indicating whether to only render generic tags and ommit publisher-specific ones.

public bool GenericTagsOnly { get; set; }

Property Value

bool

ItemType

Gets or sets information about the item type.

public ItemType ItemType { get; set; }

Property Value

ItemType

Template

Gets or sets the template used to render the list.

public Template Template { get; set; }

Property Value

Template

TotalItems

Gets or sets the total number of items available.

public int TotalItems { get; set; }

Property Value

int

TotalPages

Gets or sets the total number of pages available.

public int TotalPages { get; set; }

Property Value

int
To top