RemoveCueEvent
@objc(THEOplayerRemoveCueEvent)
public class RemoveCueEvent : NSObject, _TextTrackCueEventProtocol
Fired when TextTrackEventTypes.REMOVE_CUE
occurs for the list of TextTrackCue
s.
Remark
- The only use for this event is to identify which cue was removed!
-
The textual representation of the type of event, “removecue”.
Declaration
Swift
@objc public private(set) var type: String { get }
-
The date at which the event occurred.
Declaration
Swift
@objc public private(set) var date: Date { get }
-
The
TextTrackCue
that was removed.Declaration
Swift
public private(set) var cue: TextTrackCue { get }
-
The
TextTrackCue
that was removed.Declaration
Swift
@objc(cue) public var cue_Objc: TextTrackCue_Objc { get }