WdBreakType Enum
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.
Specifies type of break.
public enum class WdBreakType
[System.Runtime.InteropServices.Guid("58B14C6F-0FE6-3BCA-880E-E3A9C039E588")]
public enum WdBreakType
type WdBreakType =
Public Enum WdBreakType
- Inheritance
-
WdBreakType
- Attributes
Fields
Name | Value | Description |
---|---|---|
wdSectionBreakNextPage | 2 | Section break on next page. |
wdSectionBreakContinuous | 3 | New section without a corresponding page break. |
wdSectionBreakEvenPage | 4 | 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 | 5 | 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 | 6 | Line break. |
wdPageBreak | 7 | Page break at the insertion point. |
wdColumnBreak | 8 | Column break at the insertion point. |
wdLineBreakClearLeft | 9 | Line break. |
wdLineBreakClearRight | 10 | Line break. |
wdTextWrappingBreak | 11 | 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.