Class SectionConfiguration
Represents the section configuration within an EditableAreaConfiguration instance.
public sealed class SectionConfiguration
- Inheritance
-
objectSectionConfiguration
- Extension Methods
Constructors
SectionConfiguration()
Initializes a new instance of the SectionConfiguration class.
public SectionConfiguration()
Properties
Identifier
Identifier of the section used on the client.
[DataMember]
[JsonProperty("identifier")]
public Guid Identifier { get; set; }
Property Value
- Guid
Properties
Section properties.
[DataMember]
[JsonProperty("properties")]
public IFormSectionProperties Properties { get; set; }
Property Value
TypeIdentifier
Identifier of the section definition.
[DataMember]
[JsonProperty("type")]
public string TypeIdentifier { get; set; }
Property Value
- string
Zones
Zones within the section.
[DataMember]
[JsonProperty("zones")]
public List<ZoneConfiguration> Zones { get; }
Property Value
- List<ZoneConfiguration>