Trait

japgolly.scalajs.react.raw

SyntheticClipboardEvent

Related Doc: package raw

Permalink

trait SyntheticClipboardEvent[+DOMEventTarget <: Node] extends Object with SyntheticEvent[DOMEventTarget]

https://github.com/facebook/react/blob/master/packages/react-dom/src/events/SyntheticClipboardEvent.js

Annotations
@RawJSType() @native()
Linear Supertypes
SyntheticEvent[DOMEventTarget], Object, Any, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. SyntheticClipboardEvent
  2. SyntheticEvent
  3. Object
  4. Any
  5. AnyRef
  6. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Value Members

  1. final def !=(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  4. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  5. val bubbles: Boolean

    Permalink
    Definition Classes
    SyntheticEvent
  6. val cancelable: Boolean

    Permalink
    Definition Classes
    SyntheticEvent
  7. def clipboardData: DataTransfer

    Permalink

    The clipboardData attribute is an instance of the DataTransfer interface which lets a script read and manipulate values on the system clipboard during user-initiated copy, cut and paste operations.

    The clipboardData attribute is an instance of the DataTransfer interface which lets a script read and manipulate values on the system clipboard during user-initiated copy, cut and paste operations. The associated drag data store is a live but filtered view of the system clipboard, exposing data types the implementation knows the script can safely access.

    The clipboardData object's items and files properties enable processing of multi-part or non-textual data from the clipboard.

    http://www.w3.org/TR/clipboard-apis/#widl-ClipboardEvent-clipboardData

  8. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  9. val currentTarget: DOMEventTarget

    Permalink
    Definition Classes
    SyntheticEvent
  10. def defaultPrevented: Boolean

    Permalink
    Definition Classes
    SyntheticEvent
  11. final def eq(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  12. def equals(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  13. val eventPhase: Double

    Permalink
    Definition Classes
    SyntheticEvent
  14. val eventType: String

    Permalink
    Definition Classes
    SyntheticEvent
    Annotations
    @JSName( "type" )
  15. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  16. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
  17. def hasOwnProperty(v: String): Boolean

    Permalink
    Definition Classes
    Object
  18. def hashCode(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  19. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  20. def isPropagationStopped(): Boolean

    Permalink
    Definition Classes
    SyntheticEvent
  21. def isPrototypeOf(v: Object): Boolean

    Permalink
    Definition Classes
    Object
  22. val isTrusted: Boolean

    Permalink
    Definition Classes
    SyntheticEvent
  23. val nativeEvent: Event

    Permalink
    Definition Classes
    SyntheticEvent
  24. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  25. final def notify(): Unit

    Permalink
    Definition Classes
    AnyRef
  26. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
  27. def persist(): Unit

    Permalink

    If you want to access the event properties in an asynchronous way, call this on the event, which will remove the synthetic event from the pool and allow references to the event to be retained by user code.

    If you want to access the event properties in an asynchronous way, call this on the event, which will remove the synthetic event from the pool and allow references to the event to be retained by user code.

    Definition Classes
    SyntheticEvent
  28. def preventDefault(): Unit

    Permalink

    Stops the default action of an element from happening.

    Stops the default action of an element from happening. For example: Prevent a submit button from submitting a form Prevent a link from following the URL

    Definition Classes
    SyntheticEvent
  29. def propertyIsEnumerable(v: String): Boolean

    Permalink
    Definition Classes
    Object
  30. def stopPropagation(): Unit

    Permalink

    Stops the bubbling of an event to parent elements, preventing any parent event handlers from being executed.

    Stops the bubbling of an event to parent elements, preventing any parent event handlers from being executed.

    Definition Classes
    SyntheticEvent
  31. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  32. val target: DOMEventTarget

    Permalink
    Definition Classes
    SyntheticEvent
  33. val timeStamp: Date

    Permalink
    Definition Classes
    SyntheticEvent
  34. def toLocaleString(): String

    Permalink
    Definition Classes
    Object
  35. def toString(): String

    Permalink
    Definition Classes
    AnyRef → Any
  36. def valueOf(): Any

    Permalink
    Definition Classes
    Object
  37. final def wait(): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  38. final def wait(arg0: Long, arg1: Int): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  39. final def wait(arg0: Long): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from SyntheticEvent[DOMEventTarget]

Inherited from Object

Inherited from Any

Inherited from AnyRef

Inherited from Any

Ungrouped