Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Specifies type of break.
Namespace: Microsoft.Office.Interop.Word
Assembly: Microsoft.Office.Interop.Word (in Microsoft.Office.Interop.Word.dll)
Syntax
'Declaration
Public Enumeration WdBreakType
'Usage
Dim instance As WdBreakType
public enum WdBreakType
Members
| Member name | Description | |
|---|---|---|
| wdSectionBreakNextPage | Section break on next page. | |
| wdSectionBreakContinuous | New section without a corresponding page break. | |
| wdSectionBreakEvenPage | Section break with the next section beginning on the next even-numbered page. If the section break falls on an even-numbered page, Word leaves the next odd-numbered page blank. | |
| wdSectionBreakOddPage | Section break with the next section beginning on the next odd-numbered page. If the section break falls on an odd-numbered page, Word leaves the next even-numbered page blank. | |
| wdLineBreak | Line break. | |
| wdPageBreak | Page break at the insertion point. | |
| wdColumnBreak | Column break at the insertion point. | |
| wdLineBreakClearLeft | Line break. | |
| wdLineBreakClearRight | Line break. | |
| wdTextWrappingBreak | Ends the current line and forces the text to continue below a picture, table, or other item. The text continues on the next blank line that does not contain a table aligned with the left or right margin. |
Remarks
Used with the InsertBreak method of the Range or Selection object.