Property IsRequired
- Namespace
- LMKit.Extraction
- Assembly
- LM-Kit.NET.dll
IsRequired
Gets or sets a value indicating whether this element must be present in the extracted output.
public bool IsRequired { get; set; }
Property Value
- bool
true
if the element is required; otherwise,false
.
Examples
var el = new TextExtractionElement("PurchaseOrder", ElementType.String) { IsRequired = true };
Console.WriteLine(el.IsRequired); // True