April 2006
Beginner
1114 pages
98h 16m
English
window.Split [= setting]
True splits the window into panes; False displays the window as a single pane. Default is False. Use Split in combination with the following properties to divide a window into panes. For example, the following code splits the active window vertically at column C:
Sub TestSplitVertically( )
With ActiveWindow
.SplitColumn = 3
.SplitRow = 0
.Split = True
End With
End SubRead now
Unlock full access