Dokumentácia HotXLS

Vlastnosť ScrollColumn

Vráti prvý viditeľný stĺpec. Čítanie/zápis Integer

Syntax

property ScrollColumn: Integer;

Príklad

This example makes column H the first visible column when the workbook is opened in Excel

with Workbook.Sheets[1] do
begin
  Activate;
  ScrollRow := 1;
  ScrollColumn := 8;
end;

Pozri tiež

Tento príklad nastaví stĺpec H ako prvý viditeľný stĺpec pri otvorení zošita v Exceli