Table of Contents

Class EditableAreaConfiguration

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

Represents the editable area configuration within a FormBuilderConfiguration instance.

public sealed class EditableAreaConfiguration
Inheritance
object
EditableAreaConfiguration
Extension Methods

Constructors

EditableAreaConfiguration()

Initializes a new instance of the EditableAreaConfiguration class.

public EditableAreaConfiguration()

Fields

IDENTIFIER

Name of the default editable area used in the Form builder.

public const string IDENTIFIER = "DefaultFormBuilderArea"

Field Value

string

Properties

Identifier

Identifier of the editable area.

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

Property Value

string

Remarks

Form builder contains only one default editable area, therefore, IDENTIFIER is always returned.

Sections

Sections within the editable area.

[DataMember]
[JsonProperty("sections")]
public List<SectionConfiguration> Sections { get; }

Property Value

List<SectionConfiguration>