Table of Contents

Property ContainsMultipleDocuments

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

ContainsMultipleDocuments

Gets a value indicating whether the file contains more than one logical document.

public bool ContainsMultipleDocuments { get; }

Property Value

bool

true if DocumentCount is greater than 1; otherwise, false.

Examples

DocumentSplittingResult result = splitter.Split(new Attachment("batch.pdf"));
if (result.ContainsMultipleDocuments)
{
    Console.WriteLine($"Found {result.DocumentCount} separate documents.");
}
Share