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]
TracksBoardItemDblClick (
ByVal nButton as enumMouseButtons,
ByVal nUniqueId as Integer,
ByVal nPressPosInMs as Long
)
|
|
[C++]
void TracksBoardItemDblClick (
short nButton,
short nUniqueId,
long nPressPosInMs
);
|
|
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
|
|