interactive property

bool get interactive

Gets/sets the script mode - interactive(true) or batch(false).

Implementation

_i2.bool get interactive => _i3.getProperty(
      this,
      'Interactive',
    );
set interactive (bool value)

Implementation

set interactive(_i2.bool value) {
  _i3.setProperty(
    this,
    'Interactive',
    value,
  );
}