![]() |
Point nach Str?
Wer kann mir sagen wie man Point nach String umwandelt?
Delphi-Quellcode:
Danke!
procedure TForm1.Button1Click(Sender: TObject);
var p: TPoint; begin p := ScreenToClient(Mouse.CursorPos); ShowMessage(????PointToStr(p)); <- kann hier nämlich die "p" nicht ausgeben end; |
Re: Point nach Str?
Ein TPoint besteht aus 2 Integern ... wie wäre es also, wenn du diese Integer einzeln umwandelst?
|
Re: Point nach Str?
Wir wäre es mit Format?
Delphi-Quellcode:
Format('x=%d, y=%d', [p.x, p.y]);
|
Re: Point nach Str?
Delphi-Quellcode:
[edit] *Huch*, wo kommen die Antworten denn plötzlich her? :shock: [/edit]
function PointToStr(aPoint: TPoint): string;
begin Result := Format('X: %d, Y: %d',[aPoint.X, aPoint.Y]); end; |
Alle Zeitangaben in WEZ +1. Es ist jetzt 06:21 Uhr. |
Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
LinkBacks Enabled by vBSEO © 2011, Crawlability, Inc.
Delphi-PRAXiS (c) 2002 - 2023 by Daniel R. Wolf, 2024-2025 by Thomas Breitkreuz