Numbering Property

Applies To

PageSetup object.

Description

Returns or sets the type of numbering that the sections of the specified binder will contain. Can be either of the following BindPrintNumbering constants: bindConsecutivePages or bindRestartEachSection. Read/write Variant.

Example

This example places the page number in the lower-left corner of each page in Binder1.obd, and it restarts the page numbering at the beginning of each section in the binder.

Set myBinder = GetObject("C:\Binder1.obd", "OfficeBinder.Binder")
With myBinder.PageSetup
    .LeftFooter = "&P"
    .Numbering = bindRestartEachSection
End With