property SmoothScroll: Boolean;
When SmoothScroll is True, non-thumb scrollbar commands such as line up/down and page up/down animate toward their target offset in short timer-driven segments instead of jumping in one paint pass.
Dragging the scrollbar thumb still tracks immediately so users can scrub large documents without waiting for animation catch-up.
Toutes les propriétés d’affichage de TPdfView déclenchent un repeint lorsqu’elles sont affectées; vous pouvez en modifier plusieurs à la suite sans scintillement, car le rafraîchissement est regroupé en une seule invalidation
Active := True.SmoothScroll is view-local; replacing PdfView1.Pdf does not copy view-only settings from the old component relationship.
begin
PdfView1.SmoothScroll := {value};
PdfView1.Active := True;
end;