Class PropertiesPanel
View model for rendering a properties panel of a FormComponent.
public class PropertiesPanel
- Inheritance
-
objectPropertiesPanel
- Extension Methods
Properties
FormFieldName
Gets or sets the name of currently edited form field.
public string FormFieldName { get; set; }
Property Value
- string
FormId
Gets or sets identifier of the currently edited BizFormInfo.
public int FormId { get; set; }
Property Value
- int
InstanceIdentifier
Gets or sets identifier of the currently edited FormComponent<TProperties, TValue>.
public Guid InstanceIdentifier { get; set; }
Property Value
- Guid
- See Also
NotifyFormBuilder
Decides whether Form builder should be notified about properties validation.
public bool NotifyFormBuilder { get; set; }
Property Value
- bool
- See Also
PropertiesFormComponents
Gets or sets collection of FormComponents for editing properties in class of type FormComponentProperties assigned to a FormComponent<TProperties, TValue>. Edited FormComponent<TProperties, TValue> is defined via InstanceIdentifier.
public IEnumerable<FormComponent> PropertiesFormComponents { get; set; }
Property Value
- IEnumerable<FormComponent>
TypeIdentifier
Gets or sets type identifier of the currently edited FormComponent<TProperties, TValue>.
public string TypeIdentifier { get; set; }
Property Value
- string
- See Also
UpdatedProperties
Gets or sets collection of key-value pairs representing FormComponentProperties property name with it's value.
public Dictionary<string, object> UpdatedProperties { get; set; }
Property Value
- Dictionary<string, object>