hasAttachments property

bool hasAttachments

True if the features should support attachments.

The default value is false. Enabling attachments requires a GlobalID field.

Implementation

bool get hasAttachments {
  return _withThrowingErrorHandler((errorHandler) {
    return runtimecore.RT_TableDescription_getHasAttachments(
        _handle, errorHandler);
  });
}
void hasAttachments=(bool value)

Implementation

set hasAttachments(bool value) {
  _withThrowingErrorHandler((errorHandler) {
    runtimecore.RT_TableDescription_setHasAttachments(
        _handle, value, errorHandler);
  });
}