TracksBoardPaintDone event |
|
Remarks
Occurs when the TracksBoard has completed its graphic rendering, allowing to add custom graphics directly from the container application's code.
For details about the use of the TracksBoard refer to the How to use the TracksBoard to visually compose songs tutorial.
For further details about methods of the TracksBoard refer to the TracksBoard object section.
Syntax
[Visual Basic] Public Event TracksBoardPaintDone As TracksBoardPaintDoneEventHandler |
[C#] public event TracksBoardPaintDoneEventHandler TracksBoardPaintDone; |
[C++] public: __event WaveAnalyzerPaintDoneEventHandler TracksBoardPaintDoneEventHandler; |
Event Data
The event handler receives an argument of type WaveAnalyzerPaintDoneEventArgs having the following parameters:
Parameter |
Description |
|
|
hWnd |
Handle (HWND) to the window of the TracksBoard: through this handle its possible accessing the handle to the device context (HDC) of the TracksBoard using Windows API, for example through the GetDC and ReleaseDC functions. |