styleLastParents property

EnumValue styleLastParents

Just like the standard layered tree style, except that the nodes with children but no grandchildren have alternate properties; this value is used for TreeLayout#treeStyle.

Each TreeVertex gets its properties from its parent node; However, for those nodes whose TreeVertex#maxGenerationCount is 1, in other words when it has children but no grandchildren, the properties are copied from TreeLayout#alternateDefaults.

If the tree only has two levels, the root node gets the TreeLayout#rootDefaults.

Implementation

static _i3.EnumValue get styleLastParents => _i4.getProperty(
      _declaredTreeLayout,
      'StyleLastParents',
    );
void styleLastParents=(EnumValue value)

Implementation

static set styleLastParents(_i3.EnumValue value) {
  _i4.setProperty(
    _declaredTreeLayout,
    'StyleLastParents',
    value,
  );
}