hasAttachments property
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,
);
});
}
Implementation
set hasAttachments(bool value) {
_withThrowingErrorHandler((errorHandler) {
runtimecore.RT_TableDescription_setHasAttachments(
_handle,
value,
errorHandler,
);
});
}