Copyright © 2006-2019 MultiMedia Soft

CallbackWaveformAnalyzerWaveRangeLeaved delegate

Previous pageReturn to chapter overviewNext page

Remarks

 

Callback delegate invoked when the playback position leaves a graphic item of type "wave range" inside the waveform analyzer: this callback can be set through a call to the CallbackWaveformAnalyzerWaveRangeLeavedSet 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 CallbackWaveformAnalyzerWaveRangeLeaved (

nUniqueID as Int16,

nStartPosInMs as Int32

nEndPosInMs as Int32

)


 

[C#]

public delegate void CallbackWaveformAnalyzerWaveRangeLeaved (

Int16 nUniqueID,

Int32 nStartPosInMs,

Int32 nEndPosInMs

)


 

[C++]

public delegate void CallbackWaveformAnalyzerWaveRangeLeaved (

Int16 nUniqueID,

Int32 nStartPosInMs,

Int32 nEndPosInMs

)


 

Parameter

Description

 

 

nUniqueID

Unique identifier of the wave range; this unique identifier matches the unique identifier used when the custom line was created through the WaveformAnalyzer.GraphicItemWaveRangeAdd method.

nStartPosInMs

Start position of the horizontal line expressed in milliseconds

nEndPosInMs

End position of the horizontal line expressed in milliseconds