returnAttachments property

bool returnAttachments

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);
  });
}
void returnAttachments=(bool value)

Implementation

set returnAttachments(bool value) {
  _withThrowingErrorHandler((errorHandler) {
    runtimecore.RT_GenerateGeodatabaseParameters_setReturnAttachments(
        _handle, value, errorHandler);
  });
}