Property MaxLength
- Namespace
- LMKit.Extraction
- Assembly
- LM-Kit.NET.dll
MaxLength
Gets or sets the maximum number of characters allowed in the extracted text. A value of -1 indicates no limit.
public int MaxLength { get; set; }Property Value
Examples
var postal = new TextExtractionElement("PostalCode", ElementType.String);
postal.Format.MaxLength = 10;Remarks
Applicable for String, StringArray, or numeric element types.
In JSON: use the "maxLength" property.