arrangesToOrigin property

bool arrangesToOrigin

Gets or sets whether #commitNodes should move all of the nodes so that the nodes all fit with the top-left corner at the Layout#arrangementOrigin. By default this is false -- the Layout#arrangementOrigin is ignored. When this is true, nodes are moved even though #isFixed was true.

Implementation

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

Implementation

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