DocumentStatistics

WordProcessingRootPackage.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 eenvoudige tekststatistieken kunt verkrijgen voor een WordProcessing-document.

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

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

Zie ook