drawsGrid property

bool drawsGrid

Gets or sets whether this overview draws the Diagram#grid of the observed Diagram, if it is visible. The default value is true.

This property is only considered when #drawsTemporaryLayers is true. Setting this to false may help improve drawing performance.

Setting this property does not notify about any changed event.

Implementation

_i2.bool get drawsGrid => _i4.getProperty(
      this,
      'drawsGrid',
    );
void drawsGrid=(bool value)

Implementation

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