![]() |
|
#6
|
||||
|
||||
|
The simplest approach would be to store the Section break type before deleting, then re-apply it afterwards. That way you don't need to concern yourself with what type it was or might have changed to. For example, supposing you wanted to delete Section 2:
Code:
Sub Demo() Dim ScnBrk As Long, i As Long i = 2 With ActiveDocument ScnBrk = .Sections(i - 1).PageSetup.SectionStart .Sections(i).Range.Delete .Sections(i).PageSetup.SectionStart = ScnBrk End With End Sub
__________________
Cheers, Paul Edstein [Fmr MS MVP - Word] |
|
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
Deleting section break and retaining section properties
|
New Daddy | Word | 6 | 02-03-2014 07:09 PM |
Section Break (Next Page) replaces Section Break (Continuous) when deleted
|
Carlabasson | Word | 2 | 03-25-2013 10:13 PM |
| Continuous section break and column changes | Jim B | Word | 3 | 11-27-2012 02:25 PM |
| why the "section break-next page" is switched to "section break-continuous"? | Jamal NUMAN | Word | 6 | 12-14-2011 03:35 PM |
Section Break Continuous: doesn't affect the format of the page numbering
|
Jamal NUMAN | Word | 2 | 06-22-2011 04:46 PM |