Class TransformChangedEvent

java.lang.Object
java.util.EventObject
javafx.event.Event
javafx.scene.transform.TransformChangedEvent
All Implemented Interfaces:
Serializable, Cloneable

public final class TransformChangedEvent extends Event
This event is fired on a transform when any of its properties changes.
Since:
JavaFX 8.0
See Also:
  • Field Details

  • Constructor Details

    • TransformChangedEvent

      public TransformChangedEvent()
      Creates a new TransformChangedEvent with an event type of TRANSFORM_CHANGED. The source and target of the event is set to NULL_SOURCE_TARGET.
    • TransformChangedEvent

      public TransformChangedEvent(Object source, EventTarget target)
      Construct a new TransformChangedEvent with the specified event source and target. If the source or target is set to null, it is replaced by the NULL_SOURCE_TARGET value. All TransformChangedEvents have their type set to TRANSFORM_CHANGED.
      Parameters:
      source - the event source which sent the event
      target - the event target to associate with the event