Dokumentasi HotXLS

Properti ScrollColumn

Mengembalikan kolom pertama yang terlihat. Baca/tulis Integer

Sintaks

property ScrollColumn: Integer;

Contoh

Contoh ini menjadikan kolom H sebagai kolom pertama yang terlihat saat workbook dibuka di Excel

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

Lihat juga