allowZoom property

bool get allowZoom

Gets or sets whether the user may zoom into or out of the Diagram. The initial value is true.

Implementation

_i2.bool get allowZoom => _i4.getProperty(
      this,
      'allowZoom',
    );
set allowZoom (bool value)

Implementation

set allowZoom(_i2.bool value) {
  _i4.setProperty(
    this,
    'allowZoom',
    value,
  );
}