subtreeOffset property

Point get subtreeOffset

Gets or sets the offset of this parent node relative to its whole subtree.

This informational property is computed during TreeLayout#doLayout. Of course if there are no children, this is just (0, 0). You should probably not be setting this property.

Implementation

_i3.Point get subtreeOffset => _i4.getProperty(
      this,
      'subtreeOffset',
    );
set subtreeOffset (Point value)

Implementation

set subtreeOffset(_i3.Point value) {
  _i4.setProperty(
    this,
    'subtreeOffset',
    value,
  );
}