Signature
Interface UseTimelineSelectionResultType parameters
| Name | Constraint | Default | Description |
|---|---|---|---|
TrackKind | None | string | No type parameter summary yet. |
Properties
| Name | Signature | Description |
|---|---|---|
clearSelection | (): void | Clears both clip and track selection. |
selectClip | (clipId: string | null): void | Selects a clip by id, or clears clip selection when passed null. |
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. |
selectedClipTrackId | selectedClipTrackId: string | null | ID of the track containing the selected clip, or null when no clip is selected. |
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. |