Interface IEditingComponentConfigurator
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
PropertyInfoSystem.Reflection.PropertyInfo annotated with EditingComponentPropertyAttributes for configuring FormComponent<TProperties, TValue> that handles editing of
propertyInfo
in Form builder UI.formComponentProperties
FormComponentPropertiesProperties of the FormComponent<TProperties, TValue> used for editing
propertyInfo
in Form builder UI.
Exceptions
- ArgumentNullException
Thrown when
propertyInfo
orformComponentProperties
is null.- InvalidOperationException
Thrown when an EditingComponentPropertyAttribute of
propertyInfo
specifies a property which does not exist withinformComponentProperties
.