layout property

Layout? layout

Gets or sets the Layout used to position all of the immediate member nodes and links in this group. By default this property is an instance of Layout -- no special layout is used, which just makes sure each member node has a valid location.

A group layout must not be shared with any Diagram#layout.

Implementation

_i3.Layout? get layout => _i4.getProperty(
      this,
      'layout',
    );
void layout=(Layout? value)

Implementation

set layout(_i3.Layout? value) {
  _i4.setProperty(
    this,
    'layout',
    value ?? _i5.undefined,
  );
}