Aspose.Pdf.Examples.CSharp.AsposePDF.Pages.GetPageCount.Run C# (CSharp) Метод

Run() публичный статический Метод

public static Run ( ) : void
Результат void
        public static void Run()
        {
            // ExStart:GetPageCount
            // Instantiate Document instance
            Document doc = new Document();
            // Add page to pages collection of PDF file
            Page page = doc.Pages.Add();
            // Create loop instance
            for (int i = 0; i < 300; i++)
                // Add TextFragment to paragraphs collection of page object
                page.Paragraphs.Add(new TextFragment("Pages count test"));
            // Process the paragraphs in PDF file to get accurate page count
            doc.ProcessParagraphs();
            // Print number of pages in document
            Console.WriteLine("Number of pages in document = " + doc.Pages.Count);
            // ExEnd:GetPageCount
        }
    }
GetPageCount