geodatabaseVersion property
The geodatabase version of the table sublayer source.
Implementation
String get geodatabaseVersion {
final stringHandle = _withThrowingErrorHandler((errorHandler) {
return runtimecore.RT_TableSublayerSource_getGeodatabaseVersion(
_handle, errorHandler);
});
return stringHandle.toDartString();
}
Implementation
set geodatabaseVersion(String value) {
final coreValue = _CString(value);
_withThrowingErrorHandler((errorHandler) {
runtimecore.RT_TableSublayerSource_setGeodatabaseVersion(
_handle, coreValue.bytes, errorHandler);
});
}