Property IsObject
- Namespace
- LMKit.Extraction
- Assembly
- LM-Kit.NET.dll
IsObject
Gets a value indicating whether this element represents a complex object with nested elements.
public bool IsObject { get; }Property Value
- bool
- trueif the element is of type Object or ObjectArray; otherwise,- false.
Examples
var obj = new TextExtractionElement("Customer",
    new[] { new TextExtractionElement("Name", ElementType.String) }, isArray: false);
Console.WriteLine(obj.IsObject); // True