So, durch Überschreiben der virtuellen Methode AutoScrollInView ist es realisierbar.
"BlockAutoScrollInView" ist eine neue Variable, die ich nach Bedarf selbst definieren kann.
Delphi-Quellcode:
procedure TDesignerBox.AutoScrollInView(AControl: TControl);
begin
if not BlockAutoScrollInView then
inherited;
end;
stahli