Class FormComponentProperties
Represents the properties of a form component.
public class FormComponentProperties : IFormComponentProperties
- Inheritance
-
objectFormComponentProperties
- Implements
- Derived
- Extension Methods
Constructors
FormComponentProperties()
public FormComponentProperties()
Properties
Disabled
Gets or sets whether the component should be disabled.
[Obsolete("Use EditMode set to FormEditMode.Disabled instead.")]
public bool Disabled { get; set; }
Property Value
- bool
EditMode
Gets or sets the edit mode of the form component.
public FormEditMode EditMode { get; set; }
Property Value
ExplanationText
Gets or sets the explanation text.
public string ExplanationText { get; set; }
Property Value
- string
ExplanationTextAsHtml
Indicates that explanation text is rendered as HTML.
public bool ExplanationTextAsHtml { get; set; }
Property Value
- bool
Remarks
Beware that enabling this property may lead to executing malicious code on client.
InactiveMessage
Gets or sets the tooltip message displayed when the component is disabled.
public string InactiveMessage { get; set; }
Property Value
- string
Label
Gets or sets the label.
public string Label { get; set; }
Property Value
- string
Order
Gets or sets the form component order weight in the form.
public int Order { get; set; }
Property Value
- int
Tooltip
Gets or sets the tooltip.
public string Tooltip { get; set; }
Property Value
- string
TooltipAsHtml
Indicates that tooltip is rendered as HTML.
public bool TooltipAsHtml { get; set; }
Property Value
- bool
Remarks
Beware that enabling this property may lead to executing malicious code on client.