Copyright © 2006-2019 MultiMedia Soft

WaveAnalyzerPaintDone event

Previous pageReturn to chapter overviewNext page

Remarks

 

Occurs when the waveform analyzer has completed its graphic rendering, allowing to add custom graphics directly from the container application's code.

 

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.

For further details about synchronization through Events see the How to synchronize the container application through events tutorial.

 

 

Syntax

 

[Visual Basic]

Public Event WaveAnalyzerPaintDone As WaveAnalyzerPaintDoneEventHandler


 

[C#]

public event WaveAnalyzerPaintDoneEventHandler WaveAnalyzerPaintDone;


 

[C++]

public: __event WaveAnalyzerPaintDoneEventHandler WaveAnalyzerPaintDone;


 

 

Event Data

 

The event handler receives an argument of type WaveAnalyzerPaintDoneEventArgs having the following parameters:

 

Parameters

Description

 

 

hWnd

Handle (HWND) to the window of the Waveform Analyzer: through this handle its possible accessing the handle to the device context (HDC) of the Waveform Analyzer using Windows API, for example through the GetDC and ReleaseDC functions.