layoutHidden property

num get layoutHidden

This flag may be combined with other "Layout" flags as the value of the Part#layoutConditions property to indicate that when a Part's GraphObject#visible becomes false, it invalidates the Layout responsible for the Part.

Implementation

static _i2.num get layoutHidden => _i4.getProperty(
      _declaredPart,
      'LayoutHidden',
    );
set layoutHidden (num value)

Implementation

static set layoutHidden(_i2.num value) {
  _i4.setProperty(
    _declaredPart,
    'LayoutHidden',
    value,
  );
}