Interface ToolBarEvent

All Superinterfaces:
Event
All Known Implementing Classes:
ToolBarEventImpl

public interface ToolBarEvent extends Event
The ToolBarEvent interface provides specific contextual information associated with ToolBar events.
Since:
Epic 4.4
  • Method Details

    • initToolBarEvent

      void initToolBarEvent(String typeArg, boolean canBubbleArg, boolean cancelableArg)
      Initializes the value of a ToolBarEvent created through the Window createEvent method. This method should only be called before the ToolBarEvent has been dispatched with the dispatchEvent method, though it may be called multiple times during that phase if necessary. If called multiple times, the final invocation takes precedence.
      Parameters:
      typeArg - Specifies the event type.
      canBubbleArg - Specifies whether or not the event can bubble.
      cancelableArg - Specifies whether or not the event's default action can be prevented.