Click or drag to resize

GM_IsFeatureDeleted

Queries the delete status of the area, line, or point feature at the given index in the layer. Use the GM_DeleteFeature function to change the delete status of a feature.

Syntax
GM_Error_t32 __stdcall GM_IsFeatureDeleted
(
GM_LayerHandle_t32      aLayer,             // IN: Layer the point is in
GM_FeatureClassType_t8  aFeatureClassType,  // IN: Type of feature class (area, point, line)
uint32                  aFeatureIndex,      // IN: Index of feature in layer
boolean*                aIsDeleted          // OUT: Returns TRUE if marked as deleted, FALSE if not
)