getGeodatabaseFeatureTable method

GeodatabaseFeatureTable? getGeodatabaseFeatureTable({
  1. required String tableName,
})

Gets a feature table from the geodatabase containing point, line, or polygon features, as specified by the given tableName.

Parameters:

  • tableName — The name of the geodatabase feature table containing point, line, or polygon features.

Return Value: If the specified table contains annotation or dimension feature data, then no table is returned.

Implementation

GeodatabaseFeatureTable? getGeodatabaseFeatureTable({
  required String tableName,
}) {
  final coreTableName = _CString(tableName);
  final objectHandle = _withThrowingErrorHandler((errorHandler) {
    return runtimecore.RT_Geodatabase_getGeodatabaseFeatureTable(
      _handle,
      coreTableName.bytes,
      errorHandler,
    );
  });
  return GeodatabaseFeatureTable._fromHandle(
    objectHandle,
  );
}