Class TextBoxPropertiesBase
Inherited Members
System.Object.ToString()
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
Namespace: Syncfusion.JavaScript
Assembly: Syncfusion.EJ.dll
Syntax
public class TextBoxPropertiesBase : PropertiesBase
Constructors
TextBoxPropertiesBase()
Initializes a new instance of the
Declaration
public TextBoxPropertiesBase()
Properties
Change
Event triggers when the Textbox or Password or Maskedit or textarea value changed.
Declaration
[JsonProperty("change")]
public string Change { get; set; }
Property Value
| Type | Description |
|---|---|
| System.String | The change. |
CssClass
Specifies the custom CSS class.
Declaration
[JsonProperty("cssClass")]
public string CssClass { get; set; }
Property Value
| Type | Description |
|---|---|
| System.String | The CSS class. |
Enabled
Specifies whether to be enable on initialization.
Declaration
[JsonProperty("enabled")]
public bool Enabled { get; set; }
Property Value
| Type | Description |
|---|---|
| System.Boolean |
|
EnablePersistence
Specifies to maintain the current model value to browser cookies for state maintenance. While refresh the page, the model value will get apply to the control from browser cookies.
Declaration
[JsonProperty("enablePersistence")]
public bool EnablePersistence { get; set; }
Property Value
| Type | Description |
|---|---|
| System.Boolean |
|
Mask
Gets or sets the mask.
Declaration
[JsonProperty("mask")]
public string Mask { get; set; }
Property Value
| Type | Description |
|---|---|
| System.String | The mask. |
ReadOnly
Specifies the TextBox, Password, Mask Edit, and Textarea readOnly.
Declaration
[JsonProperty("readOnly")]
public bool ReadOnly { get; set; }
Property Value
| Type | Description |
|---|---|
| System.Boolean |
|
Value
Specifies the value on initialization.
Declaration
[JsonProperty("value")]
public string Value { get; set; }
Property Value
| Type | Description |
|---|---|
| System.String | The end value. |
WatermarkText
Specifies the watermarkText on initialization.
Declaration
[JsonProperty("watermarkText")]
public string WatermarkText { get; set; }
Property Value
| Type | Description |
|---|---|
| System.String | The water mark text. |