nodeIndentPastParent property

num nodeIndentPastParent

Gets or sets the fraction of this node's breadth is added to #nodeIndent to determine any spacing at the start of the children.

The default value is 0.0 -- the only indentation is specified by #nodeIndent. When the value is 1.0, the children will be indented past the breadth of the parent node.

This property is only sensible when the #alignment is TreeLayout.AlignmentStart|AlignmentStart or TreeLayout.AlignmentEnd|AlignmentEnd.

This sets the #rootDefaults' property of the same name.

Implementation

_i2.num get nodeIndentPastParent => _i4.getProperty(
      this,
      'nodeIndentPastParent',
    );
void nodeIndentPastParent=(num value)

Implementation

set nodeIndentPastParent(_i2.num value) {
  _i4.setProperty(
    this,
    'nodeIndentPastParent',
    value,
  );
}