ContinueNumbersFromPreviousSection Property

Microsoft Publisher Visual Basic

ContinueNumbersFromPreviousSection Property

True if the specified section continues the numbering from the prvious section. Read/write Boolean.

expression.ContinueNumbersFromPreviousSection

expression    Required. An expression that returns a Section object.

Example

The following example adds three pages to the publication, adds a new section after the first page, and then sets the ContinueNumbersFromPreviousSection to False for the new section.

      Dim objSection As Section
ActiveDocument.Pages.Add Count:=3, After:=1
Set objSection = ActiveDocument.Sections.Add(StartPageIndex:=2)
objSection.ContinueNumbersFromPreviousSection = False