[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.IPane.ScrollColumn

ScrollColumn Property

ScrollColumn

Gets or sets the index of the leftmost visible column in the pane or worksheet.

Use this property to determine or change the current horizontal scroll position of a split pane.

Declaration
int ScrollColumn { get; set; }
Property ScrollColumn As Integer
Examples
worksheet.SplitPanes(2, 2);
IPane pane = worksheet.Panes[0];
pane.ScrollColumn = 3;
int scrollColumn = pane.ScrollColumn;