layoutGroupLayout property

num get layoutGroupLayout

This flag may be combined with other "Layout" flags as the value of the Part#layoutConditions property to indicate that when a Group has been laid out, it invalidates the Layout responsible for that Group; this flag is ignored for Parts that are not Groups.

Implementation

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

Implementation

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