Class TourCanceledEvent
java.lang.Object
java.util.EventObject
com.vaadin.flow.component.ComponentEvent<com.vaadin.flow.component.Component>
org.vaadin.addons.antlerflow.tour.events.TourCanceledEvent
- All Implemented Interfaces:
Serializable
public class TourCanceledEvent
extends com.vaadin.flow.component.ComponentEvent<com.vaadin.flow.component.Component>
Event class representing the cancellation of a guided tour.
This event is fired when a user cancels the guided tour, either via user interaction or programmatically. It provides details about the source component that triggered the event and whether the event originated from the client-side.
The `TourCanceledEvent` is designed to be used in conjunction with the guided tour framework to perform additional actions, such as cleaning up resources or notifying other parts of the application about the cancellation of the tour.
- See Also:
-
Field Summary
Fields inherited from class EventObject
source -
Constructor Summary
ConstructorsConstructorDescriptionTourCanceledEvent(com.vaadin.flow.component.Component source, boolean fromClient) -
Method Summary
Methods inherited from class com.vaadin.flow.component.ComponentEvent
getSource, isFromClient, unregisterListenerMethods inherited from class EventObject
toString
-
Constructor Details
-
TourCanceledEvent
public TourCanceledEvent(com.vaadin.flow.component.Component source, boolean fromClient)
-