Sections.Add(Object, Object) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Returns a Section object that represents a new section added to a document.
public Microsoft.Office.Interop.Word.Section Add (ref object Range, ref object Start);
abstract member Add : obj * obj -> Microsoft.Office.Interop.Word.Section
Public Function Add (Optional ByRef Range As Object, Optional ByRef Start As Object) As Section
Parameters
- Range
- Object
Optional Object. The range before which you want to insert the section break. If this argument is omitted, the section break is inserted at the end of the document.
- Start
- Object
Optional Object. The type of section break you want to add. Can be one of the following WdSectionStartconstants: wdSectionContinuous, wdSectionEvenPage, wdSectionNewColumn, wdSectionNewPage, or wdSectionOddPage. If this argument is omitted, a Next Page section break is added.