Table of Contents

Class TextAreaProperties

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

Represents properties of the TextAreaComponent.

public class TextAreaProperties : FormComponentProperties, IFormComponentProperties
Inheritance
object
TextAreaProperties
Implements
Inherited Members
Extension Methods

Properties

CopyButtonVisible

Describes whether Copy button should be visible.

public bool CopyButtonVisible { get; set; }

Property Value

bool

MaxRowsNumber

Maximum number of rows.

[MinimumIntegerValueValidationRule(1)]
[IntegerFieldComparisonValidationRule(NumericFieldComparisonTypes.GreaterThanOrEqual, "MinRowsNumber", false)]
public int MaxRowsNumber { get; set; }

Property Value

int

Remarks

Default value is 5.

MinRowsNumber

Minimum number of rows.

[MinimumIntegerValueValidationRule(1)]
[IntegerFieldComparisonValidationRule(NumericFieldComparisonTypes.LessThanOrEqual, "MaxRowsNumber", false)]
public int MinRowsNumber { get; set; }

Property Value

int

Remarks

Default value is 3.

WatermarkText

Placeholder displayed in the text area.

public string WatermarkText { get; set; }

Property Value

string