allowsEditing property
True if editing is allowed on the sublayer, when it is supported, false otherwise.
Indicates whether a client should allow feature editing for this layer. When you set this value to true, editing is allowed on the sublayer only if the service also supports editing.
Implementation
bool get allowsEditing {
return _withThrowingErrorHandler((errorHandler) {
return runtimecore.RT_SubtypeSublayer_getAllowsEditing(
_handle,
errorHandler,
);
});
}
Implementation
set allowsEditing(bool value) {
_withThrowingErrorHandler((errorHandler) {
runtimecore.RT_SubtypeSublayer_setAllowsEditing(
_handle,
value,
errorHandler,
);
});
}