HotXLS-documentatie

ScrollColumn eigenschap

Retourneert the first visible column. Read/write Integer

Syntaxis

eigenschap ScrollColumn: Integer;

Voorbeeld

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

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

Zie also