Gets or sets the value which specifies whether or not the window is splitted.
[Visual Basic] Property Split As Boolean [C#] bool Split { get; set; } [C++] __property bool get_Split(); __property void set_Split(bool ); [JScript] function get Split() : bool function set Split(bool);
True True if window is splitted; otherwise, false.
The following example removes all window splits from the woksheet one.
[C#]
book.Worksheets[1].Split = false;
[Visual Basic]
book.Worksheets(1).Split = False
[C++]
book->Worksheets->Item[1]->Split = flase;
IWorksheet Interface | NativeExcel Namespace | FreezePanes Property | SplitRow Property | SplitColumn Property