Registriert seit: 30. Jan 2005
Ort: Münster
745 Beiträge
Delphi 3 Professional
|
Re: PaintBox rechstbündig statt linksbündig
10. Dez 2005, 18:18
Hallo,
so in etwa:
Delphi-Quellcode:
var x : Integer;
begin
with PaintBox1 do
begin
x := Canvas.TextWidth('erster Text');
Canvas.TextOut(Width-x,0,'erster Text');
x := Canvas.TextWidth('etwas länger ist dieser');
Canvas.TextOut(Width-x,20,'etwas länger ist dieser');
end;
MfG Lannes
(Nichts ist nicht Nichts) and ('' <> nil ) and (Pointer('') = nil ) and (@('') <> nil )
|
|
Zitat
|