Table of Contents

Method ToString

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

ToString()

Returns a human-readable representation of this segment.

public override string ToString()

Returns

string

A string in the format "Pages 1-5: Invoice" or "Page 1: Invoice" for single-page segments.

Examples

foreach (DocumentSegment segment in result.Segments)
{
    Console.WriteLine(segment.ToString()); // e.g. "Pages 1-3: Invoice"
}
Share