Table of Contents

Class SectionMetadata

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

Metadata of a section definition.

public sealed class SectionMetadata
Inheritance
object
SectionMetadata
Extension Methods

Fields

DEFAULT_SECTION_TYPE_IDENTIFIER

Type identifier for the default Form builder's section.

public const string DEFAULT_SECTION_TYPE_IDENTIFIER = "Kentico.DefaultSection"

Field Value

string

Properties

DefaultPropertiesUrl

URL of the section definition to retrieve the default properties.

[JsonProperty("defaultPropertiesUrl")]
public string DefaultPropertiesUrl { get; }

Property Value

string

Description

Description of the registered section.

[JsonProperty("description")]
public string Description { get; }

Property Value

string

HasProperties

Indicates whether the section has at least one property which is decorated with EditingComponentAttribute

[JsonProperty("hasProperties")]
public bool HasProperties { get; }

Property Value

bool

IconClass

Icon CSS class of the registered section.

[JsonProperty("iconClass")]
public string IconClass { get; }

Property Value

string

MarkupUrl

URL of the section definition to retrieve the markup.

[JsonProperty("markupUrl")]
public string MarkupUrl { get; }

Property Value

string

Name

Name of the registered section.

[JsonProperty("name")]
public string Name { get; }

Property Value

string

PropertiesFormMarkupUrl

URL of the section definition to retrieve the properties form markup.

[JsonProperty("propertiesFormMarkupUrl")]
public string PropertiesFormMarkupUrl { get; }

Property Value

string

TypeIdentifier

Type section identifier.

[JsonProperty("typeIdentifier")]
public string TypeIdentifier { get; }

Property Value

string

UseAdminFormComponents

Indicates whether the section properties form should be opened from the administration UI using admin form components or from the form builder using MVC form components.

[JsonProperty("useAdminFormComponents")]
public bool UseAdminFormComponents { get; set; }

Property Value

bool