hasAttachments property

bool hasAttachments

True if the features in the table support attachments, false otherwise.

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,
    );
  });
}