Difference between revisions of "TPoint"
From SCAR Divi Manual
(→Example) |
|||
| (One intermediate revision by the same user not shown) | |||
| Line 5: | Line 5: | ||
end; | end; | ||
</source> | </source> | ||
| + | |||
| + | ==Availability== | ||
| + | SCAR Divi 3.00 > Current | ||
==Description== | ==Description== | ||
| − | A structured type which holds a 2- | + | A structured type which holds a 2-dimensional coordinate specified by the [[integer]] '''X''' and '''Y''' fields. |
==Example== | ==Example== | ||
Latest revision as of 13:14, 3 July 2011
Definition
TPoint = packed record X, Y: Integer; end;
Availability
SCAR Divi 3.00 > Current
Description
A structured type which holds a 2-dimensional coordinate specified by the integer X and Y fields.
Example
var
p: TPoint;
begin
p := Point(5, 6);
WriteLn('TPoint(' + IntToStr(p.X) + ',' + IntToStr(p.Y) + ')');
end.Output:
TPoint(5,6)