Name

window.Split [= setting]

Synopsis

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 Sub

Get Programming Excel with VBA and .NET now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.