Share via


Split Property

Split Property
This content is no longer actively maintained. It is provided as is, for anyone who may still be using these technologies, with no warranties or claims of accuracy with regard to the most recent product version or service release.

True if the window is split into multiple panes. Read/write Boolean.

expression.Split

expression   Required. An expression that returns a Window object.

Example

This example splits the active window into two equal-sized window panes.

  ActiveDocument.ActiveWindow.Split = True

If the Document1 window is split, this example closes the active pane.

  If Windows("Document1").Split = True Then
    Windows("Document1").ActivePane.Close
End If