Table of Contents

Class ZoneConfiguration

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

Represents the zone configuration within a SectionConfiguration instance.

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

Constructors

ZoneConfiguration()

Initializes a new instance of the ZoneConfiguration class.

public ZoneConfiguration()

Properties

FormComponents

Form components within the zone.

[DataMember]
[JsonProperty("formComponents")]
public List<FormComponentConfiguration> FormComponents { get; }

Property Value

List<FormComponentConfiguration>

Identifier

Identifier of the zone.

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

Property Value

Guid

Remarks

Form builder contains only one default zone, this information is required by client only, therefore, System.Guid.NewGuid() is always returned.

Name

Name of the form zone.

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

Property Value

string