Field TextExtractionElement
- Namespace
- LMKit.Extraction
- Assembly
- LM-Kit.NET.dll
Gets the schema definition that was used to extract this element.
public readonly TextExtractionElement TextExtractionElement
Returns
- TextExtractionElement
The TextExtractionElement that describes the name, type, format, and inner elements of the extraction field.
Examples
string fieldName = element.TextExtractionElement.Name;
ElementType type = element.TextExtractionElement.ElementType;
Console.WriteLine($"{fieldName} ({type})");