Table of Contents

Property Elements

Namespace
LMKit.Extraction
Assembly
LM-Kit.NET.dll

Elements

Gets a read-only list of the extracted text elements.

public IReadOnlyList<TextExtractionResultElement> Elements { get; }

Property Value

IReadOnlyList<TextExtractionResultElement>

Examples

// Iterate through all top-level elements
foreach (var el in result.Elements)
{
    Console.WriteLine($"{el.TextExtractionElement.Name}: {el.Value}");
}

Remarks

Each TextExtractionResultElement represents a distinct piece of extracted data, including its name, type, and value.