Table of Contents

Property this

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

this[string]

Indexer access by element name or path (e.g., "Customer.Address.City", "Lines[2].Price"). Throws if not found.

public TextExtractionResultElement this[string nameOrPath] { get; }

Parameters

nameOrPath string

Element name or path (case-insensitive for names; exact for paths).

Property Value

TextExtractionResultElement

The matching TextExtractionResultElement.

Examples

// Quick access via indexer
var price = result["Lines[0].Price"].As<decimal>();