alternateRowSpacing property

num alternateRowSpacing

Gets or sets the alternate distance between rows of children.

The default value is 25.

This property is only used when there is more than one row of children for a given parent node. The #alternateLayerSpacing property determines the distance between the parent node and its first row of child nodes. This sets the #alternateDefaults' property of the same name.

Implementation

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

Implementation

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