Table of Contents

Interface IFormComponentProperties

Namespace
Kentico.Xperience.Admin.Base.Forms
Assembly
Kentico.Xperience.Admin.Base.dll

Represents the properties of a form component.

public interface IFormComponentProperties
Extension Methods

Remarks

The system uses this interface to process form component properties. For defining custom properties, inherit the FormComponentProperties class.

Properties

Disabled

Gets or sets whether the component should be disabled.

bool Disabled { get; set; }

Property Value

bool

ExplanationText

Gets or sets the explanation text.

string ExplanationText { get; set; }

Property Value

string

ExplanationTextAsHtml

Indicates that explanation text is rendered as HTML.

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.

string InactiveMessage { get; set; }

Property Value

string

Label

Gets or sets the label.

string Label { get; set; }

Property Value

string

Order

Gets or sets the form component order weight in the form.

int Order { get; set; }

Property Value

int

Tooltip

Gets or sets the tooltip.

string Tooltip { get; set; }

Property Value

string

TooltipAsHtml

Indicates that tooltip is rendered as HTML.

bool TooltipAsHtml { get; set; }

Property Value

bool

Remarks

Beware that enabling this property may lead to executing malicious code on client.

See Also