Referenčná stránka HotXLS pre ScrollRow Vráti prvý viditeľný riadok. Čítanie/zápis Integer, pokrývajúca automatizáciu Excel v Delphi a C++Builder, API zošita XLS/XLSX, funkcie pracovných listov a použitie v Pascal

Prehľad

Vlastnosť ScrollRow

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

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

ScrollRow: Integer;

This example makes row 25 the first visible row when the workbook is opened in Excel. Use it with ScrollColumn to position a large worksheet near the area that users should review first

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

to position a large worksheet near the area that users should review first