DK for Delphi | GisInterfaces.IGIS_Editor.InsertPoint | Methods | Properties
Insert a point to the current part of the currently edited shape.
// Delphi public procedure InsertPoint( const _pos : Integer; const _ptg : TGIS_Point3D );
// C++ Builder public: void InsertPoint( const int _pos, TGIS_Point3D* const _ptg ) = 0;
| Name | Type | Description |
|---|---|---|
| _pos | Integer | where point must be inserted; points are counted from 0 |
| _ptg | TGIS_Point3D | point to be inserted; expected Viewer coordinate system |
This is similar to AddPoint except inserting position. Using _pos param we can choose a destination part to which we insert a new point.
The numbering of points is consistent with the numbering of points displayed on the screen.
See TGIS_Shape.Reverse for similar example.