User Input - ResultPointX
Text:
API Call:Returns the x coordinate from the last Getpoint, Getline or GetRect.
Declaration:
ResultPointX: Double;
Source Code
Delphi
Code Block | ||||||||||
---|---|---|---|---|---|---|---|---|---|---|
| ||||||||||
var
x, y: double;
begin
if getpoint(x, y, 'Click Point') = 1 then
result := resultpointx; // should be same as x
end; |