clearSelection | (): void | Clears both clip and track selection. |
hasSelection | hasSelection: boolean | Whether any clip or track is selected. |
selectClip | (clipId: string | null): void | Selects a clip by id, or clears clip selection when passed null. |
selectClips | (clipIds: typeOperator): void | Selects multiple clips by id, clearing clips not included. |
selectedClip | selectedClip: Clip | null | Currently selected clip, or null when no clip is selected. |
selectedClipId | selectedClipId: string | null | ID of the currently selected clip, or null when no clip is selected. |
selectedClipIds | selectedClipIds: string[] | IDs of all selected clips in track order. |
selectedClips | selectedClips: Clip[] | All selected clips in track order. |
selectedClipTrackId | selectedClipTrackId: string | null | ID of the track containing the selected clip, or null when no clip is selected. |
selectedGroup | selectedGroup: TimelineClipGroup | null | Selected group when the primary selected clip belongs to one. |
selectedGroupId | selectedGroupId: string | null | Selected group id when the primary selected clip belongs to one. |
selectedTrack | selectedTrack: Track<TrackKind> | null | Currently selected track, or null when no track row is selected. |
selectedTrackId | selectedTrackId: string | null | ID of the currently selected track, or null when no track row is selected. |
selectTrack | (trackId: string | null): void | Selects a track by id, or clears track selection when passed null. |
toggleClipSelection | (clipId: string, selected?: boolean): boolean | Toggles one clip in the current multi-selection. |