Class ZoneConfiguration
Represents the zone configuration within a SectionConfiguration instance.
[DataContract(Namespace = "", Name = "Zone")]
public sealed class ZoneConfiguration
- Inheritance
-
objectZoneConfiguration
- 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
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