Skip to content
This repository has been archived by the owner on Nov 16, 2023. It is now read-only.

Latest commit

 

History

History
46 lines (26 loc) · 1.02 KB

section-continuenumbersfromprevioussection-property-publisher.md

File metadata and controls

46 lines (26 loc) · 1.02 KB
title keywords f1_keywords ms.prod api_name ms.assetid ms.date
Section.ContinueNumbersFromPreviousSection Property (Publisher)
vbapb10.chm7405575
vbapb10.chm7405575
publisher
Publisher.Section.ContinueNumbersFromPreviousSection
a3d64f14-dc65-4fb1-5079-0fdf2e3f8f38
06/08/2017

Section.ContinueNumbersFromPreviousSection Property (Publisher)

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

Syntax

expression. ContinueNumbersFromPreviousSection

_expression_A variable that represents a Section object.

Return Value

Boolean

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