canAdd method

bool canAdd()

Determines whether you can add new features to the table.

Although this method may state that the table allows new features to be added, the application may not be licensed to permit this. For example, a user cannot add features to a secured feature table if the application is licensed at the Lite level (LicenseLevel.lite).

Return Value: True if you can add features to the table, false otherwise.

Implementation

bool canAdd() {
  return _withThrowingErrorHandler((errorHandler) {
    return runtimecore.RT_FeatureTable_canAdd(_handle, errorHandler);
  });
}