isEditable property
True if this feature table is editable, false otherwise.
Underlying file permissions (for subclasses such as
ShapefileFeatureTable
and GeodatabaseFeatureTable) can be changed
while the feature table is open. In these cases the value of this property
may not be accurate.
Implementation
bool get isEditable {
return _withThrowingErrorHandler((errorHandler) {
return runtimecore.RT_FeatureTable_getIsEditable(_handle, errorHandler);
});
}