(Gast)
n/a Beiträge
|
AW: Wie stelle ich fest ob ein Control nur halb sichtbar ist?
12. Jul 2021, 18:35
Geht auch etwas stylischer :
Delphi-Quellcode:
function TControlHelper.isClipped(): Boolean;
begin
if(not Assigned(parent)) then
Exit(False);
Result := not Parent.ClientRect.Contains(BoundsRect);
end;
|
|
Zitat
|