Class TextBoxField
Represents a textbox field.
Inherited Members
Namespace: Telerik.Windows.Documents.Fixed.Model.InteractiveForms
Assembly: Telerik.Windows.Documents.Fixed.dll
Syntax
public sealed class TextBoxField : TextField, IInstanceIdOwner, IWidgetCreator<VariableContentWidget>
Constructors
TextBoxField(String)
Initializes a new instance of TextBoxField class.
Declaration
public TextBoxField(string fieldName)
Parameters
System.String
fieldName
The field name. |
Properties
AllowScroll
Gets or sets boolean value indicating whether to allow scrolling for bigger text content. If the scrolling is not allowed then the maximum text input is restricted to the Widget annotation rectangle.
Declaration
public bool AllowScroll { get; set; }
Property Value
System.Boolean
|
FieldType
Gets the field type.
Declaration
public override FormFieldType FieldType { get; }
Property Value
FormFieldType
|
Overrides
IsFileSelect
Gets or sets boolean value indicating whether the field represents pathname of a file whose contents are to be submitted as the value of the field.
Declaration
public bool IsFileSelect { get; set; }
Property Value
System.Boolean
|
IsMultiline
Gets or sets boolean value indicating whether multiline text input is allowed.
Declaration
public bool IsMultiline { get; set; }
Property Value
System.Boolean
|
IsPassword
Gets or sets boolean value indicating whether the text input is a password.
Declaration
public bool IsPassword { get; set; }
Property Value
System.Boolean
|
MaxLengthOfInputCharacters
Gets or sets the max length of the input characters. If null then the text input is not restricted from these value.
Declaration
public int? MaxLengthOfInputCharacters { get; set; }
Property Value
System.Nullable<System.Int32>
|
ShouldSpellCheck
Gets or sets boolean value indicating whether the inputted text should be spell checked.
Declaration
public bool ShouldSpellCheck { get; set; }
Property Value
System.Boolean
|