syncDimensions property
Specifies whether Dimension data is to be included from the service, when generating, or synchronizing with, an offline geodatabase.
Feature layers and tables are always included in the generation and synchronization of the geodatabase. Dimension data can be optionally included.
The default value is true. Dimension data will be included.
SyncCapabilities.supportsDimensions
can be used to check whether
Dimension data is available from the service.
This property can be used at the same time as specifying other additional data types to be included.
Implementation
bool get syncDimensions {
return _withThrowingErrorHandler((errorHandler) {
return runtimecore.RT_GenerateGeodatabaseParameters_getSyncDimensions(
_handle, errorHandler);
});
}
Implementation
set syncDimensions(bool value) {
_withThrowingErrorHandler((errorHandler) {
runtimecore.RT_GenerateGeodatabaseParameters_setSyncDimensions(
_handle, value, errorHandler);
});
}