Table of Contents

Class ZoneConfiguration

Namespace
Kentico.PageBuilder.Web.Mvc
Assembly
Kentico.Content.Web.Mvc.dll

Represents the zone within the EditableAreasConfiguration configuration class.

[DataContract(Namespace = "", Name = "Zone")]
public sealed class ZoneConfiguration
Inheritance
object
ZoneConfiguration
Extension Methods

Constructors

ZoneConfiguration()

Creates an instance of ZoneConfiguration class.

public ZoneConfiguration()

Properties

Identifier

Identifier of the widget zone.

[DataMember]
[JsonProperty("identifier")]
public Guid Identifier { get; set; }

Property Value

Guid

Name

Name of the widget zone.

[DataMember]
[JsonProperty("name", NullValueHandling = NullValueHandling.Ignore)]
public string Name { get; set; }

Property Value

string

Widgets

List of widgets within the zone.

[DataMember]
[JsonProperty("widgets")]
public List<WidgetConfiguration> Widgets { get; }

Property Value

List<WidgetConfiguration>