alternateRowIndent property
num
get
alternateRowIndent
Gets or sets the alternate indentation of the first child of each row, if the #alignment is not a "Center" alignment.
The default value is 10. The value should be non-negative.
This is used to leave room for the links that connect a parent node with the child nodes that are in additional rows. This sets the #alternateDefaults' property of the same name.
Implementation
_i2.num get alternateRowIndent => _i4.getProperty(
this,
'alternateRowIndent',
);
set
alternateRowIndent
(num value)
Implementation
set alternateRowIndent(_i2.num value) {
_i4.setProperty(
this,
'alternateRowIndent',
value,
);
}