effectAllowed property

EffectAllowed get effectAllowed

Returns the kinds of operations that are to be allowed.

Can be set (during the dragstart event), to change the allowed operations.

The possible values are "none", "copy", "copyLink", "copyMove", "link", "linkMove", "move", "all", and "uninitialized",

MDN Reference

Implementation

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

Implementation

set effectAllowed(_i3.EffectAllowed value) {
  _i4.setProperty(
    this,
    'effectAllowed',
    value.name,
  );
}