Table of Contents

Interface IEditingComponentConfigurator

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

Encapsulates logic for configuring FormComponentProperties of a FormComponent<TProperties, TValue> using attributes.

public interface IEditingComponentConfigurator
Extension Methods

Methods

ConfigureFormComponentProperties(PropertyInfo, FormComponentProperties)

Configures given formComponentProperties according to propertyInfo's attributes. The EditingComponentAttribute and EditingComponentPropertyAttribute classes are supported.

void ConfigureFormComponentProperties(PropertyInfo propertyInfo, FormComponentProperties formComponentProperties)

Parameters

propertyInfo PropertyInfo

System.Reflection.PropertyInfo annotated with EditingComponentPropertyAttributes for configuring FormComponent<TProperties, TValue> that handles editing of propertyInfo in Form builder UI.

formComponentProperties FormComponentProperties

Properties of the FormComponent<TProperties, TValue> used for editing propertyInfo in Form builder UI.

Exceptions

ArgumentNullException

Thrown when propertyInfo or formComponentProperties is null.

InvalidOperationException

Thrown when an EditingComponentPropertyAttribute of propertyInfo specifies a property which does not exist within formComponentProperties.

See Also