isEvenOdd property

bool isEvenOdd

Gets or sets whether this PathFigure will render and hit-test with the even-odd fill rule or nonzero winding number fill rule (false). The default value is false, using the nonzero winding number rule.

In Geometry Path Strings, this is set by using "F0" instead of "F" at the beginning of a figure.

Implementation

_i2.bool get isEvenOdd => _i4.getProperty(
      this,
      'isEvenOdd',
    );
void isEvenOdd=(bool value)

Implementation

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