syncAttributeRules property
Specifies whether Attribute Rule 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. Attribute Rule data can be optionally included.
The default value is false. Attribute Rule data will not be included.
SyncCapabilities.supportsAttributeRules can be used to check whether Attribute Rule 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 syncAttributeRules {
return _withThrowingErrorHandler((errorHandler) {
return runtimecore.RT_GenerateGeodatabaseParameters_getSyncAttributeRules(
_handle,
errorHandler,
);
});
}
Implementation
set syncAttributeRules(bool value) {
_withThrowingErrorHandler((errorHandler) {
runtimecore.RT_GenerateGeodatabaseParameters_setSyncAttributeRules(
_handle,
value,
errorHandler,
);
});
}