control property

bool get control

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

Implementation

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

Implementation

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