Uses of Record Class
com.vaadin.flow.component.clipboard.ClipboardPayload
Packages that use ClipboardPayload
Package
Description
Server-side access to the browser's clipboard ? both writing (copy) and
reading (paste).
Trigger API and its internal wiring.
-
Uses of ClipboardPayload in com.vaadin.flow.component.clipboard
Method parameters in com.vaadin.flow.component.clipboard with type arguments of type ClipboardPayloadModifier and TypeMethodDescriptionvoidClipboardBinding.read(SerializableConsumer<@Nullable ClipboardPayload> onPayload, SerializableConsumer<PromiseAction.Error> onError) Reads the user's clipboard vianavigator.clipboard.read()when the underlying trigger fires and delivers the contents toonPayload, or routes any failure toonError. -
Uses of ClipboardPayload in com.vaadin.flow.component.trigger.internal
Constructor parameters in com.vaadin.flow.component.trigger.internal with type arguments of type ClipboardPayloadModifierConstructorDescriptionReadFromClipboardAction(SerializableConsumer<@Nullable ClipboardPayload> onPayload, SerializableConsumer<PromiseAction.Error> onError) Creates an action that reads the user's clipboard and delivers the contents toonPayload, or routes any failure toonError.