Table of Contents

Class FormComponentProperties

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

Represents the properties of a form component.

public class FormComponentProperties : IFormComponentProperties
Inheritance
object
FormComponentProperties
Implements
Derived
Extension Methods

Properties

Disabled

Gets or sets whether the component should be disabled.

public bool Disabled { get; set; }

Property Value

bool

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.