isClipping property

bool get isClipping

For Spot Panels: Gets or sets whether this Panel's main element clips instead of fills. The main element will not paint its stroke, if it has any. This assumes that the main element is a Shape.

Since 2.2: For Groups: Gets or sets whether this Group's Placeholder clips its member nodes. For compatibility, if the Group is a Spot Panel, it will not clip its members.

When this property is true, the Spot panel will size itself to be the intersection of the main element bounds and all other elements' bounds, rather than the union of these bounds.

Implementation

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

Implementation

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