Sections.Add Method
Returns a Section object that represents a new section added to a document.
Namespace: Microsoft.Office.Interop.Word
Assembly: Microsoft.Office.Interop.Word (in Microsoft.Office.Interop.Word.dll)
Syntax
'Declaration
Function Add ( _
ByRef Range As Object, _
ByRef Start As Object _
) As Section
'Usage
Dim instance As Sections
Dim Range As Object
Dim Start As Object
Dim returnValue As Section
returnValue = instance.Add(Range, Start)
Section Add(
ref Object Range,
ref Object Start
)
Parameters
- Range
Type: System.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
Type: System.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.
Return Value
Type: Microsoft.Office.Interop.Word.Section