DocumentStatistics

PdfRootPackage.DocumentStatistics property

Haalt het documentstatistiekenpakket op.

public DocumentStatistics DocumentStatistics { get; }

Eigendoms-waarde

Het documentstatistiekenpakket.

Opmerkingen

Kom meer te weten

Voorbeelden

Dit codevoorbeeld laat zien hoe u de tekststatistieken voor een PDF-document kunt verkrijgen.

using (Metadata metadata = new Metadata(Constants.InputPdf))
{
    var root = metadata.GetRootPackage<PdfRootPackage>();

        Console.WriteLine(root.DocumentStatistics.CharacterCount);
        Console.WriteLine(root.DocumentStatistics.PageCount);
        Console.WriteLine(root.DocumentStatistics.WordCount);
}

Zie ook