DocumentStatistics

PresentationRootPackage.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 voor een presentatie kunt verkrijgen.

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

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

Zie ook