Difference between revisions of "TPADelete"
From SCAR Divi Manual
(Created page with "==Definition== <source lang="scar" lines="false"> procedure TPARemove(var TPA: TPointArray; const Index: Integer); </source> ==Availability== SCAR Divi 3.26 > Current ==Descrip...") |
|||
| Line 32: | Line 32: | ||
[[Category:Functions]] | [[Category:Functions]] | ||
[[Category:TPA Functions]] | [[Category:TPA Functions]] | ||
| + | [[Category:Array Functions]] | ||
Revision as of 10:02, 29 June 2011
Definition
procedure TPARemove(var TPA: TPointArray; const Index: Integer);
Availability
SCAR Divi 3.26 > Current
Description
This function removes the coordinate at a given position Index in a given TPointArray TPA. If the index is outside of the array bounds, nothing happens.
Example
var
TPA: TPointArray;
begin
TPA := [Point(0, 0), Point(2, 2), Point(5, 10)];
TPARemove(TPA, 1);
WriteLn('TPointArray: ' + TPAToStr(TPA));
end.Output:
TPointArray: (0,0);(5,10)