isPartialInclusion property

bool get isPartialInclusion

Gets or sets whether a selectable Part may be only partly or must be completely enclosed by the rectangle given to #selectInRect. The default value is false: parts must be completely inside the rectangle. Setting this property does not raise any events.

Implementation

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

Implementation

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