SVGZoomEvent Properties

The SVGZoomEvent type exposes the following members.

Properties
  NameDescription
Public propertyBubbles
Used to indicate whether or not an event is a bubbling event. If the event can bubble the value is true, else the value is false.
(Inherited from Event.)
Public propertyCancelable
Used to indicate whether or not an event can have its default action prevented. If the default action can be prevented the value is true, else the value is false.
(Inherited from Event.)
Public propertyCurrentTarget
Used to indicate the IEventTarget whose IEventListeners are currently being processed. This is particularly useful during capturing and bubbling.
(Inherited from Event.)
Public propertyDefaultPrevented
Returns true if preventDefault() was invoked while the cancelable attribute value is true, and false otherwise.
(Inherited from Event.)
Public propertyEventPhase
Used to indicate which phase of event flow is currently being evaluated.
(Inherited from Event.)
Public propertyIsTrusted
The isTrusted attribute must return the value it was initialized to. When an event is created the attribute must be initialized to false.
(Inherited from Event.)
Public propertyNewScale
The scale factor that will be in place after the zoom operation has been processed.
Public propertyNewTranslate
The translation values that will be in place after the zoom operation has been processed. The SVGPoint object is read only.
Public propertyPreviousScale
The scale factor from previous zoom operations that was in place before the zoom operation occurred.
Public propertyPreviousTranslate
The translation values from previous zoom operations that were in place before the zoom operation occurred. The SVGPoint object is read only.
Public propertyTarget
Used to indicate the IEventTarget to which the event was originally dispatched.
(Inherited from Event.)
Public propertyTimeStamp
Used to specify the time (in milliseconds relative to the epoch) at which the event was created. Due to the fact that some systems may not provide this information the value of timeStamp may be not available for all events. When not available, a value of 0 will be returned. Examples of epoch time are the time of the system start or 0:0:0 UTC 1st January 1970.
(Inherited from Event.)
Public propertyType
The name of the event (case-insensitive). The name must be an XML name.
(Inherited from Event.)
Public propertyZoomRectScreen
The specified zoom rectangle in screen units. The SVGRect object is read only.
See Also