bounds property

Rect get bounds

Gets or sets the bounds of this vertex, in document coordinates. Setting this property does not directly modify the position of any Node, but it will modify the value of #centerX and #centerY, as well as the subsidiary convenience properties #x, #y, #width, and #height.

Implementation

_i3.Rect get bounds => _i4.getProperty(
      this,
      'bounds',
    );
set bounds (Rect value)

Implementation

set bounds(_i3.Rect value) {
  _i4.setProperty(
    this,
    'bounds',
    value,
  );
}