maxGenerationCount property
num
get
maxGenerationCount
Gets or sets the maximum depth of the subtrees below this node.
For a leaf node, this will be zero.
This informational property is computed as part of the TreeLayout#initializeTreeVertexValues pass. You should probably not be setting this value.
Implementation
_i2.num get maxGenerationCount => _i4.getProperty(
this,
'maxGenerationCount',
);
set
maxGenerationCount
(num value)
Implementation
set maxGenerationCount(_i2.num value) {
_i4.setProperty(
this,
'maxGenerationCount',
value,
);
}