SplitSpecial Property
Applies To
View object.
Description
Returns or sets the active window pane. Read/write Long.
Can be one of the following WdSpecialPane constants:
| |
| - wdPaneEndnoteContinuationNotice
|
- wdPaneEndnoteContinuationSeparator
| |
| |
| |
| - wdPaneFootnoteContinuationNotice
|
- wdPaneFootnoteContinuationSeparator
| |
| |
| |
See Also
SeekView property.
Example
This example displays the primary footer in a separate pane in the active window.
ActiveWindow.View.SplitSpecial = wdPanePrimaryFooter
This example adds a footnote to the active document and displays all the footnotes in a separate pane in the active window.
ActiveDocument.Footnotes.Add Range:=Selection.Range, Text:="Footnote text"
With ActiveWindow.View
.Type = wdNormalView
.SplitSpecial = wdPaneFootnotes
End With