[]
Gets the panes in the worksheet.
Returns the IPanes collection for the current worksheet view. Use this property to access the IPane objects in the worksheet, such as after calling SplitPanes(int, int).
IPanes Panes { get; }
ReadOnly Property Panes As IPanes
worksheet.SplitPanes(2, 2);
IPanes panes = worksheet.Panes;
IPane pane = panes[0];