CallbackWaveformAnalyzerMouseNotif delegate |
|
Remarks
Callback delegate invoked every time a mouse event happens on the waveform analyzer: this callback can be set through a call to the CallbackWaveformAnalyzerMouseNotifSet 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 CallbackWaveformAnalyzerMouseNotif ( nAction as enumMouseActions, nFlags as Int32, xPos as Int32, yPos as Int32, nPressPosInPix as Int32, nPressPosInMs as Int32 ) |
[C#] public delegate void CallbackWaveformAnalyzerMouseNotif ( enumMouseActions nAction, Int32 nFlags, Int32 xPos, Int32 yPos, Int32 nPressPosInPix, Int32 nPressPosInMs ) |
[C++] public delegate void CallbackWaveformAnalyzerMouseNotif ( enumMouseActions nAction, Int32 nFlags, Int32 xPos, Int32 yPos, Int32 nPressPosInPix, Int32 nPressPosInMs ) |
Parameter |
Description |
||||||||||||||||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||||||||||||||||
nAction |
Mouse action type. Supported values are the following:
|
||||||||||||||||||||||||||||||||||||||||||||||||
nFlags |
Can be a combination of the following values:
|
||||||||||||||||||||||||||||||||||||||||||||||||
xPos |
Horizontal position, expressed in pixels respect to the client area of the whole user interface of the waveform analyzer, where the mouse generated the notification |
||||||||||||||||||||||||||||||||||||||||||||||||
yPos |
Vertical position, expressed in pixels respect to the client area of the whole user interface of the waveform analyzer, where the mouse generated the notification |
||||||||||||||||||||||||||||||||||||||||||||||||
nPressPosInPix |
Number representing the position expressed in pixels where the mouse button was pressed. If the mouse action should have been performed outside of the waveform's area, this parameter would be set to -1. It's important to note that this parameter doesn't represent the horizontal position on the waveform's visible area (for this you can refer to the xPos parameter) but to the horizontal position in pixels calculated respect to the bitmap representation of the total waveform's width in pixels at the current horizontal zoom factor. |
||||||||||||||||||||||||||||||||||||||||||||||||
nPressPosInMs |
Number representing the position expressed in milliseconds where the mouse button was pressed. If the mouse action should have been performed outside of the waveform's area, this parameter would be set to -1. |