Remarks
Occurs when a mouse button is double clicked over a sound item available on the TracksBoard.
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 TracksBoardItemDblClick As TracksBoardItemClickEventHandler
|
|
[C#]
public event TracksBoardItemClickEventHandler TracksBoardItemDblClick;
|
|
[C++]
public: __event TracksBoardItemClickEventHandler TracksBoardItemDblClick;
|
|
Event Data
The event handler receives an argument of type TracksBoardItemClickEventArgs having the following parameters:
Parameter
|
Description
|
|
|
nButton
|
Double clicked mouse button.
Supported values are the following:
Mnemonic constant
|
Value
|
Meaning
|
MOUSE_BTN_LEFT
|
0
|
Left mouse button
|
MOUSE_BTN_RIGHT
|
1
|
Right mouse button
|
MOUSE_BTN_MIDDLE
|
2
|
Middle mouse button
|
|
nUniqueID
|
Unique identification number assigned to the sound item after being generated by one of the following methods:
|
nPressPosInMs
|
Position of the double click, expressed in milliseconds, respect to the beginning of the session
|
|