alphaTab.synth.PositionChangedEventArgs
Represents the info when the time in the synthesizer changes.
class PositionChangedEventArgsProperties​
currentTick​
The current time position within the song in midi ticks.
- JavaScript
- C#
- Kotlin
readonly currentTick: number;double CurrentTick { get; }val currentTick: DoublecurrentTime​
The current time position within the song in milliseconds.
- JavaScript
- C#
- Kotlin
readonly currentTime: number;double CurrentTime { get; }val currentTime: DoubleendTick​
The total length of the song in midi ticks.
- JavaScript
- C#
- Kotlin
readonly endTick: number;double EndTick { get; }val endTick: DoubleendTime​
The total length of the song in milliseconds.
- JavaScript
- C#
- Kotlin
readonly endTime: number;double EndTime { get; }val endTime: DoubleisSeek​
Whether the position changed because of time seeking.
- JavaScript
- C#
- Kotlin
isSeek: boolean;bool IsSeek { get; set; }var isSeek: BooleanmodifiedTempo​
The modified tempo in which the actual playback is happening (e.g. due to playback speed or external audio synchronization)
- JavaScript
- C#
- Kotlin
modifiedTempo: number;double ModifiedTempo { get; set; }var modifiedTempo: DoubleoriginalTempo​
The original tempo in which alphaTab internally would be playing right now.
- JavaScript
- C#
- Kotlin
originalTempo: number;double OriginalTempo { get; set; }var originalTempo: Double