drawsTemporaryLayers property

bool drawsTemporaryLayers

Gets or sets whether this overview draws the temporary layers of the observed Diagram. The default value is true. Setting this property to false may improve drawing performance, especially if the Diagram#grid is visible.

Setting this property does not notify about any changed event.

Implementation

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

Implementation

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