Finding Out if a Section of a Document Has Page Numbers : Document Header Footer « Word « VBA / Excel / Access / Word






Finding Out if a Section of a Document Has Page Numbers

 
Sub find()
If Selection.Sections(1).Headers(wdHeaderFooterEvenPages) _
    .PageNumbers.Count = 0 Then Selection.Sections(1) _
    .Headers(wdHeaderFooterEvenPages).PageNumbers.add _
    PageNumberAlignment:=wdAlignPageNumberCenter
End Sub

 








Related examples in the same category

1.Getting to the Header or Footer
2.Adding Page Numbers to One or More Sections of a Document
3.Changing the Page Numbering for a Section
4.To add the chapter number to the page numbers, use heading numbering in your document, set the IncludeChapterNumber property to True, and specify the separator to use
5.Suppressing the Page Number for the First Page: set the ShowFirstPageNumber property for the appropriate HeaderFooter object in the appropriate section to False
6.Formatting Page Numbers
7.Select the PageNumber object and then apply formatting to it as you would any other selection
8.Creating "Page X of Y" Page Numbers
9.adds a new-page section to the active document, placing it before the second paragraph:
10.Removing Page Numbers from One or More Sections of a Document