DK11 for Delphi | GisClasses.TGIS_EditorMode | Enums
Editor vertex adding mode.
// Delphi type TGIS_EditorMode = ( Default, Reversed, NearestPoint, AfterActivePoint );
// C++ Builder enum DECLSPEC_DENUM TGIS_EditorMode unsigned short { Default, Reversed, NearestPoint, AfterActivePoint };
Name | Value | Description | |
---|---|---|---|
Default | Editing behavior will be controlled by MouseBegin() _nearest parameter. Usually TGIS_EditorMode.NearestPoint, but after pressing CTRL same as TGIS_EditorMode.AfterActivePoint. | ||
Reversed | Editing will be opposite to default. Usually TGIS_EditorMode.AfterActivePoint, but after pressing CTRL same as TGIS_EditorMode.NearestPoint. | ||
NearestPoint | Added vertex modifies the nearest line segment or polygon edge. | ||
AfterActivePoint | A new vertex is added sequentially (by vertex number) after the last active vertex. | ||