isPanelMain property

bool get isPanelMain

Gets or sets whether a GraphObject is the "main" object for some types of Panel. Panels that use a "main" object include Panel.Auto, Panel.Spot, and Panel.Link.

Panels that use a "main" object will use the first object that has this property set to true, or else just the first object, if none have the property set.

Do not modify this property once this object is an element of a panel.

Implementation

_i2.bool get isPanelMain => _i4.getProperty(
      this,
      'isPanelMain',
    );
set isPanelMain (bool value)

Implementation

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