Split Property

Applies To

Window Object.

Description

True if the window is split. Read-write.

Remarks

It is possible for FreezePanes to be True and Split to be False, or vice versa.

This property applies only to worksheets and macro sheets.

Example

This example splits the active window in BOOK1.XLS at cell B2, without freezing panes. This causes the Split property to return True.


Workbooks("BOOK1.XLS").Worksheets("Sheet1").Activate
With ActiveWindow
    .SplitColumn = 2
    .SplitRow = 2
End With

There are two ways to remove the split added by the previous example.


Workbooks("BOOK1.XLS").Worksheets("Sheet1").Activate
ActiveWindow.Split = False            'method one

Workbooks("BOOK1.XLS").Worksheets("Sheet1").Activate
ActiveWindow.SplitColumn = 0        'method two
ActiveWindow.SplitRow = 0

This example removes the window split. Before you can remove the split, you must set FreezePanes to False to remove frozen panes.


Workbooks("BOOK1.XLS").Worksheets("Sheet1").Activate
With ActiveWindow
    .FreezePanes = False
    .Split = False
End With