[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.IWorksheet.ActivePane

ActivePane Property

ActivePane

Gets the active pane of the worksheet.

Returns the IPane object that represents the pane currently active in the worksheet view. Use this property to access or modify the scroll position of the active pane after the worksheet has been split into multiple panes.

Declaration
IPane ActivePane { get; }
ReadOnly Property ActivePane As IPane
Examples
worksheet.SplitPanes(2, 2);
IPane pane = worksheet.ActivePane;
pane.ScrollRow = 3;
pane.ScrollColumn = 2;