TimeEvent Class |
Namespace: Aspose.Html.Dom.Svg.Events
The TimeEvent type exposes the following members.
Name | Description | |
---|---|---|
![]() | Bubbles |
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.) |
![]() | Cancelable |
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.) |
![]() | CurrentTarget |
Used to indicate the IEventTarget whose IEventListeners are currently being processed.
This is particularly useful during capturing and bubbling.
(Inherited from Event.) |
![]() | DefaultPrevented |
Returns true if preventDefault() was invoked while the cancelable attribute value is true, and false otherwise.
(Inherited from Event.) |
![]() | Detail |
Specifies some detail information about the Event, depending on the type of the event. For this event type, indicates the repeat number for the animation.
|
![]() | EventPhase |
Used to indicate which phase of event flow is currently being evaluated.
(Inherited from Event.) |
![]() | IsTrusted |
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.) |
![]() | Target |
Used to indicate the IEventTarget to which the event was originally dispatched.
(Inherited from Event.) |
![]() | TimeStamp |
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.) |
![]() | Type |
The name of the event (case-insensitive). The name must be an XML name.
(Inherited from Event.) |
![]() | View |
The view attribute identifies the AbstractView [DOM2VIEWS] from which the event was generated.
|
Name | Description | |
---|---|---|
![]() | Equals | (Inherited from Object.) |
![]() | Finalize | (Inherited from Object.) |
![]() | GetHashCode | (Inherited from Object.) |
![]() | GetType | (Inherited from Object.) |
![]() | InitEvent |
The InitEvent(String, Boolean, Boolean) method is used to initialize the value of an Event created through the
IDocumentEvent interface.
(Inherited from Event.) |
![]() | InitTimeEvent |
The initTimeEvent method is used to initialize the value of a TimeEvent created through the DocumentEvent interface. This method may only be called before the TimeEvent has been dispatched via the dispatchEvent method, though it may be called multiple times during that phase if necessary. If called multiple times, the final invocation takes precedence.
|
![]() | MemberwiseClone | (Inherited from Object.) |
![]() | PreventDefault |
If an event is cancelable, the PreventDefault method is used to signify that the event is to be canceled,
meaning any default action normally taken by the implementation as a result of the event will not occur.
(Inherited from Event.) |
![]() | StopImmediatePropagation |
Invoking this method prevents event from reaching any event listeners registered after the current one and when dispatched in a tree also prevents event from reaching any other objects.
(Inherited from Event.) |
![]() | StopPropagation |
The StopPropagation method is used prevent further propagation of an event during event flow.
(Inherited from Event.) |
![]() | ToString | (Inherited from Object.) |