Property Format
- Namespace
- LMKit.Extraction
- Assembly
- LM-Kit.NET.dll
Format
Gets the format settings applied to this extraction element.
public TextExtractionElementFormat Format { get; }
Property Value
Examples
var code = new TextExtractionElement("CountryCode", ElementType.String, "ISO-3166 country code");
code.Format.CaseMode = TextCaseMode.UpperCase;
code.Format.MaxLength = 2;
Remarks
The format settings include options such as text case transformation and spacing character handling. This property is not available for elements of type Object or ObjectArray.