right property

bool get right

Gets or sets whether the logical right mouse button is being held down. This is true if the button was pressed at the time of the event.

Implementation

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

Implementation

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