computesBoundsAfterDrag property

bool computesBoundsAfterDrag

Gets or sets whether the size of the area of the Group's #placeholder should remain the same during a DraggingTool move until a drop occurs. Groups within temporary layers (such as new Groups during a drag-copy) are unaffected by this property.

In other words, when the value is true, re-computing the bounds of the members is suspended until a drop occurs, at which time the border is recomputed, perhaps not including some members that had been dragged out and reparented. The initial value is false.

Implementation

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

Implementation

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