canEditGeometry method

bool canEditGeometry()

Determines whether you can edit the geometry field in a table.

Although this method may state that the table allows geometry fields to be edited, the application may not be licensed to permit this. For example, a user cannot update geometry in a secured feature table if the application is licensed at the Lite level (LicenseLevel.lite).

Return Value: True if you can edit the geometry field, false if you can't edit the geometry field or an error occurred.

Implementation

bool canEditGeometry() {
  return _withThrowingErrorHandler((errorHandler) {
    return runtimecore.RT_FeatureTable_canEditGeometry(_handle, errorHandler);
  });
}