CallbackWaveformAnalyzerHorzLineLeaved delegate |
|
Remarks
Callback delegate invoked when the playback position leaves a graphic item of type "horizontal line" inside the waveform analyzer: this callback can be set through a call to the CallbackWaveformAnalyzerHorzLineLeavedSet method.
For further details about callback delegates see the How to synchronize the container application through callback delegates tutorial.
For details about the use of the Waveform Analyzer refer to the How to use the Waveform Analyzer section.
For further details about methods of the Waveform Analyzer refer to the WaveformAnalyzer class section.
Syntax
[Visual Basic] Public Delegate Sub CallbackWaveformAnalyzerHorzLineLeaved ( nUniqueID as Int16, nStartPosInMs as Int32 nEndPosInMs as Int32 ) |
[C#] public delegate void CallbackWaveformAnalyzerHorzLineLeaved ( Int16 nUniqueID, Int32 nStartPosInMs, Int32 nEndPosInMs ) |
[C++] public delegate void CallbackWaveformAnalyzerHorzLineLeaved ( Int16 nUniqueID, Int32 nStartPosInMs, Int32 nEndPosInMs ) |
Parameter |
Description |
|
|
nUniqueID |
Unique identifier of the horizontal line; this unique identifier matches the unique identifier used when the custom line was created through the WaveformAnalyzer.GraphicItemHorizontalLineAdd method. |
nStartPosInMs |
Start position of the horizontal line expressed in milliseconds |
nEndPosInMs |
End position of the horizontal line expressed in milliseconds |