Class TimeEvent

Class TimeEvent

Namespace: Aspose.Html.Dom.Svg.Events
Assembly: Aspose.HTML.dll (25.2.0)

The TimeEvent interface provides specific contextual information associated with Time events.The different types of events that can occur are: beginEvent, endEvent and repeatEvent.

[ComVisible(true)]
[DOMObject]
[DOMName("TimeEvent")]
public class TimeEvent : Event, INotifyPropertyChanged

Inheritance

objectDOMObjectEventTimeEvent

Implements

INotifyPropertyChanged

Inherited Members

Event.NonePhase, Event.CapturingPhase, Event.AtTargetPhase, Event.BubblingPhase, Event.InitEvent(string, bool, bool), Event.PreventDefault(), Event.StopPropagation(), Event.StopImmediatePropagation(), Event.Bubbles, Event.Cancelable, Event.CurrentTarget, Event.EventPhase, Event.Target, Event.TimeStamp, Event.Type, Event.DefaultPrevented, Event.IsTrusted, DOMObject.GetPlatformType(), object.GetType(), object.MemberwiseClone(), object.ToString(), object.Equals(object?), object.Equals(object?, object?), object.ReferenceEquals(object?, object?), object.GetHashCode()

Properties

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.

[DOMName("detail")]
public long Detail { get; }

Property Value

long

View

The view attribute identifies the AbstractView [DOM2VIEWS] from which the event was generated.

[DOMName("view")]
public IAbstractView View { get; }

Property Value

IAbstractView

Methods

InitTimeEvent(string, IAbstractView, long)

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.

[DOMName("initTimeEvent")]
public void InitTimeEvent(string typeArg, IAbstractView viewArg, long detailArg)

Parameters

typeArg string

Specifies the event type.

viewArg IAbstractView

Specifies the Event’s AbstractView.

detailArg long

Specifies the Event’s detail.

See Also

Event