CallbackWaveformAnalyzerWidth delegate |
|
Remarks
Callback delegate invoked every time the waveform analyzer has been resized horizontally, usually after a call to the WaveformAnalyzer.Move method: this callback can be set through a call to the CallbackWaveformAnalyzerWidthSet 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 CallbackWaveformAnalyzerWidth ( nWidthInMs as Int32, nWidthInPixels as Int32 ) |
[C#] public delegate void CallbackWaveformAnalyzerWidth ( Int32 nWidthInMs, Int32 nWidthInPixels ) |
[C++] public delegate void CallbackWaveformAnalyzerWidth ( Int32 nWidthInMs, Int32 nWidthInPixels ) |
Parameter |
Description |
|
|
nWidthInMs |
Width of the waveform analyzer's display surface, expressed in milliseconds |
nWidthInPixels |
Width of the waveform analyzer's display surface, expressed in pixels |