NativeExcel for .Net Developer's Reference

IWorksheet.Split Property

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);

Property Value

True True if window is splitted; otherwise, false.

Example

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;

See Also

IWorksheet Interface | NativeExcel Namespace | FreezePanes Property | SplitRow Property | SplitColumn Property