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