returnAttachments property
Indicates if attachments are added to the geodatabase.
The default value is false. This parameter is only applicable if the feature service has attachments.
Implementation
bool get returnAttachments {
return _withThrowingErrorHandler((errorHandler) {
return runtimecore.RT_GenerateGeodatabaseParameters_getReturnAttachments(
_handle, errorHandler);
});
}
Implementation
set returnAttachments(bool value) {
_withThrowingErrorHandler((errorHandler) {
runtimecore.RT_GenerateGeodatabaseParameters_setReturnAttachments(
_handle, value, errorHandler);
});
}