Table of Contents

Property PageCount

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

PageCount

Gets the number of pages in the document.

public int PageCount { get; }

Property Value

int

Examples

var result = await chat.LoadDocumentAsync("report.pdf");
Console.WriteLine($"Document has {result.PageCount} pages.");
Share