readOnly property

bool readOnly

Gets or sets a value indicating whether the form is read only.

The default value is false.

Implementation

bool get readOnly => _readOnly;
void readOnly=(bool value)

Implementation

set readOnly(bool value) {
  _readOnly = value;
  if (_helper.isLoadedForm) {
    for (int i = 0; i < fields.count; i++) {
      fields[i].readOnly = value;
    }
  }
}