comments property

bool comments

Gets or sets whether this layout should find all Nodes whose category is "Comment" and whose anchors are nodes represented in the network, and increase the size of the corresponding TreeVertex to make room for the comment nodes. The default value is true.

Implementation

_i2.bool get comments => _i4.getProperty(
      this,
      'comments',
    );
void comments=(bool value)

Implementation

set comments(_i2.bool value) {
  _i4.setProperty(
    this,
    'comments',
    value,
  );
}