editable property

bool editable

True if the field is editable.

The default value is true.

Implementation

bool get editable {
  return _withThrowingErrorHandler((errorHandler) {
    return runtimecore.RT_FieldDescription_getEditable(
      _handle,
      errorHandler,
    );
  });
}
void editable=(bool value)

Implementation

set editable(bool value) {
  _withThrowingErrorHandler((errorHandler) {
    runtimecore.RT_FieldDescription_setEditable(
      _handle,
      value,
      errorHandler,
    );
  });
}