Analyzing your prompt, please hold on...
An error occurred while retrieving the results. Please refresh the page and try again.
This element adds a handwritten text placeholder to the form. The placeholder consists of several boxes in which the respondent can write letters or numbers, one character in each box.
Handwritten characters written inside boxers are recognized automatically without the need for an external OCR library.
TextInputConfig element can be used to request name, phone number, address and other textual information in free form or to offer a respondent answer an open-ended question.
TextInputConfig element is declared as an instance of TextInputConfig
class:
var input = new TextInputConfig();
Name | Type | Description |
---|---|---|
Length |
int |
The number of character input placeholders. |
Name | Type | Default value | Description |
---|---|---|---|
Name |
string |
n/a | Used as a reminder of the element’s purpose and returned in the recognition results; for example, Year,"2024" .You can use the same value for multiple elements. This text is not displayed on the form. |
InputType |
Aspose.OMR.Handwriting.Generation.Config.Enums.InputType |
InputType.Numbers |
The type of allowed characters:
|
CellSize |
Aspose.OMR.Handwriting.Generation.Config.Enums.CellSize |
CellSize.Normal |
The size of each placeholder:
|
None.
var input = new TextInputConfig();
input.Name = "Year";
input.Length = 4;
Analyzing your prompt, please hold on...
An error occurred while retrieving the results. Please refresh the page and try again.