dropEffect property

DropEffect get dropEffect

Returns the kind of operation that is currently selected. If the kind of operation isn't one of those that is allowed by the effectAllowed attribute, then the operation will fail.

Can be set, to change the selected operation.

The possible values are "none", "copy", "link", and "move".

MDN Reference

Implementation

_i3.DropEffect get dropEffect => _i3.DropEffect.values.byName(_i4.getProperty(
      this,
      'dropEffect',
    ));
set dropEffect (DropEffect value)

Implementation

set dropEffect(_i3.DropEffect value) {
  _i4.setProperty(
    this,
    'dropEffect',
    value.name,
  );
}