Class TextField
Abstract base for form fields that capture and display textual content, providing shared value handling and appearance invalidation.
Inherited Members
Namespace: Telerik.Windows.Documents.Fixed.Model.InteractiveForms
Assembly: Telerik.Windows.Documents.Fixed.dll
Syntax
public abstract class TextField : FormField<VariableContentWidget>, IInstanceIdOwner, IStructuralElement, IWidgetCreator<VariableContentWidget>
Constructors
TextField(String)
Initialize the text field with the specified fieldName.
Declaration
public TextField(string fieldName)
Parameters
|
System.String
fieldName
The field name. |
Properties
DefaultValue
Text value restored on form reset (default state).
Declaration
public string DefaultValue { get; set; }
Property Value
|
System.String
The default text content for this field, or null if no default value is specified. |
Value
Current textual value displayed and submitted for this field.
Declaration
public string Value { get; set; }
Property Value
|
System.String
The text value entered by the user, or null if no text has been entered. |