Property IsArrayOfObject
- Namespace
- LMKit.Extraction
- Assembly
- LM-Kit.NET.dll
IsArrayOfObject
Gets a value indicating whether this element represents an array of objects.
public bool IsArrayOfObject { get; }Property Value
- bool
- trueif the element is of type ObjectArray; otherwise,- false.
Examples
var items = new TextExtractionElement("Items",
    new[] { new TextExtractionElement("Name", ElementType.String) }, isArray: true);
Console.WriteLine(items.IsArrayOfObject); // True