geodatabaseVersion property

String geodatabaseVersion

The geodatabase version of the map image layer.

Implementation

String get geodatabaseVersion {
  final stringHandle = _withThrowingErrorHandler((errorHandler) {
    return runtimecore.RT_ArcGISMapImageLayer_getGeodatabaseVersion(
        _handle, errorHandler);
  });
  return stringHandle.toDartString();
}
void geodatabaseVersion=(String value)

Implementation

set geodatabaseVersion(String value) {
  final coreValue = _CString(value);
  _withThrowingErrorHandler((errorHandler) {
    runtimecore.RT_ArcGISMapImageLayer_setGeodatabaseVersion(
        _handle, coreValue.bytes, errorHandler);
  });
}