layout property

Layout layout

Gets or sets the Layout used to position all of the top-level nodes and links in this Diagram. By default this property is an instance of a simple Layout that assigns positions to all parts that need it. The value cannot be null and must not be shared with other Diagrams.

Implementation

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

Implementation

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