geodatabaseSyncDirection property
The synchronization direction that will be used when synchronizing the geodatabase.
This is only used if the Geodatabase has a sync model of SyncModel.geodatabase, it is ignored for SyncModel.layer.
Implementation
SyncDirection get geodatabaseSyncDirection {
final coreValue = _withThrowingErrorHandler((errorHandler) {
return runtimecore
.RT_SyncGeodatabaseParameters_getGeodatabaseSyncDirection(
_handle,
errorHandler,
);
});
return SyncDirection._fromCoreValue(
coreValue,
);
}
Implementation
set geodatabaseSyncDirection(SyncDirection value) {
_withThrowingErrorHandler((errorHandler) {
runtimecore.RT_SyncGeodatabaseParameters_setGeodatabaseSyncDirection(
_handle,
value.coreValue,
errorHandler,
);
});
}