TimedTextSource.Resolved Event

Definition

Occurs when the TimedTextSource is resolved.

// Register
event_token Resolved(TypedEventHandler<TimedTextSource, TimedTextSourceResolveResultEventArgs const&> const& handler) const;

// Revoke with event_token
void Resolved(event_token const* cookie) const;

// Revoke with event_revoker
TimedTextSource::Resolved_revoker Resolved(auto_revoke_t, TypedEventHandler<TimedTextSource, TimedTextSourceResolveResultEventArgs const&> const& handler) const;
public event TypedEventHandler<TimedTextSource,TimedTextSourceResolveResultEventArgs> Resolved;
function onResolved(eventArgs) { /* Your code */ }
timedTextSource.addEventListener("resolved", onResolved);
timedTextSource.removeEventListener("resolved", onResolved);
- or -
timedTextSource.onresolved = onResolved;
Public Custom Event Resolved As TypedEventHandler(Of TimedTextSource, TimedTextSourceResolveResultEventArgs) 

Event Type

Applies to