Class TextField
Represents an abstract base class for text-based form fields that allow users to enter and edit textual content with various formatting and validation options.
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)
Initializes a new instance of TextField class.
Declaration
public TextField(string fieldName)
Parameters
System.String
fieldName
The field name. |
Properties
DefaultValue
Gets or sets the default text value that will be restored when the form is reset to its initial 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
Gets or sets the current text content of this text 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. |