Click here to Skip to main content
Click here to Skip to main content

Count pages in MS Word Document

By , 29 Apr 2003
 

Introduction

This article explains how to count the pages in MS Word document programmatically using C#.

Using the code

To count the pages in MSWord document, we need to follow following steps:

  1. Create an object of Word Application.
  2. Open the required Word document using the open() function of Documents collection of Word document. This function returns the Word.Document object.
  3. Cal the ComputeStatistics fumction on Word.Document object passing it an enum WdStatistic with value equal to wdStatisticPages. This function will return the number of pages in the opened word document.

Here is the Code:

using System; 

namespace DocPageCounter 
{ 
      class PageCounter 
      { 
            /// <SUMMARY> 
            /// The main entry point for the application. 
            /// </SUMMARY> 
            [STAThread] 
            static void Main(string[] args) 
            { 
                Word.ApplicationClass WordApp = new Word.ApplicationClass(); 

                // give any file name of your choice. 
                object fileName = "D:\\abc\\oop1.doc"; 
                object readOnly = false; 
                object isVisible = true;

                //  the way to handle parameters you don't care about in .NET 
                object missing = System.Reflection.Missing.Value; 

                //   Make word visible, so you can see what's happening 
                //WordApp.Visible = true; 
                //   Open the document that was chosen by the dialog 
                Word.Document aDoc = WordApp.Documents.Open(ref fileName, 
                                        ref missing,ref readOnly, ref missing,
                                        ref missing, ref missing, ref missing,
                                        ref missing, ref missing, ref missing,
                                         ref missing, ref isVisible);

                Word.WdStatistic stat = Word.WdStatistic.wdStatisticPages ; 
                int num =  aDoc.ComputeStatistics(stat,ref missing); 
                System.Console.WriteLine ("The number of pages in doc is {0}", 
                                          num); 
                System.Console.ReadLine(); 
            } 
      } 
} 

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here

About the Author

Shelly Jain
United States United States
Member
No Biography provided

Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
Hint: For improved responsiveness ensure Javascript is enabled and choose 'Normal' from the Layout dropdown and hit 'Update'.
You must Sign In to use this message board.
Search this forum  
    Spacing  Noise  Layout  Per page   
Questionthat assembly does not allow partially trusted callersmemberMember 452931616 Jul '10 - 3:21 
GeneralSome Example ApplicationmemberEpstone16 Feb '10 - 6:24 
QuestionComplete document statistics, including image.. Possible?memberkartika926 Aug '09 - 15:15 
GeneralMS Office app is required in the targate machicememberMd. Marufuzzaman26 Jun '09 - 20:32 
GeneralRe: MS Office app is required in the targate machicememberPRMan!!!9 Dec '09 - 12:13 
GeneralRe: MS Office app is required in the targate machicegroupMd. Marufuzzaman11 Dec '09 - 1:15 
GeneralClevermemberDerek Bartram26 Apr '08 - 8:00 
QuestionHow can I access each page of word documentmemberKKGaurav17 Sep '07 - 1:45 
GeneralWriting Data to Word Documentmembersrujana_m24 Jul '07 - 2:13 
Hi,
I have some code that generates an xml file and word document parallely. I have to read the xml file and write that data to word document. Writing to word document is based on the xml nodes that is data in first node should go to the first page in the doc file similarly second node text to second page so on. So can anyone help me out
 
Thnx in advance.
 
Srujana
QuestionPerformance issuememberLokanatha Reddy3 Apr '07 - 1:09 
QuestionGet Header stylememberLokanatha Reddy27 Mar '07 - 2:38 
GeneralRead content From Multiple word document FilesmemberSatish_CHVS1 Sep '06 - 2:24 
QuestionReading MSG-files with C#?memberWolfram Menzel9 Mar '05 - 3:13 
GeneralNeed save a Word documentsussAnonymous1 Sep '04 - 7:11 
QuestionHow to count the number of words in the Documentmemberganekun30 Jul '04 - 21:35 
AnswerRe: How to count the number of words in the Documentmembergeorgi nastev23 Oct '06 - 6:01 
GeneralWord Doc tagsmemberkanch eramudu18 Aug '03 - 7:56 
GeneralOffice XPmemberRay Cassick30 Apr '03 - 12:08 
GeneralRe: Office XPmemberyuronline26 Aug '07 - 6:48 
QuestionMissing things?memberRay Cassick30 Apr '03 - 9:46 
AnswerRe: Missing things?memberMisterG1 Jul '04 - 4:53 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

Permalink | Advertise | Privacy | Mobile
Web04 | 2.6.130516.1 | Last Updated 30 Apr 2003
Article Copyright 2003 by Shelly Jain
Everything else Copyright © CodeProject, 1999-2013
Terms of Use
Layout: fixed | fluid