alt property

bool get alt

Gets or sets whether the alt key is being held down. This is true if the key was pressed at the time of the event.

Implementation

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

Implementation

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