Table of Contents

Class ItemSettings

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

Renresents an item settings.

public class ItemSettings
Inheritance
ItemSettings
Inherited Members

Constructors

ItemSettings()

Initializes a new instance of an object.

public ItemSettings()

Properties

Fields

Gets or sets the list of fields to render (in the order the must be rendered).

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

TagPrefix

Gets or sets the tag prefix.

public string TagPrefix { get; set; }

Property Value

string

Template

Gets or sets the template used to render the item.

public Template Template { get; set; }

Property Value

Template

ValidationErrors

Gets or sets fields validation error messages.

public Dictionary<string, string> ValidationErrors { get; set; }

Property Value

Dictionary<string, string>
To top