CallbackTracksboardPlayHeadPos delegate |
|
Remarks
Callback delegate invoked whenever the position of TracksBoard's play head line is changed: this callback can be set through a call to the CallbackTracksboardPlayHeadPosSet method.
The usage of this delegate is alternative to the TracksBoardPlayHeadPositionChange event.
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 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 class section.
Syntax
[Visual Basic] Public Delegate Sub CallbackTracksboardPlayHeadPos ( bPlayHeadAvailable as Boolean, nPosInMs as Int32 ) |
[C#] public delegate void CallbackTracksboardPlayHeadPos ( bool bPlayHeadAvailable, Int32 nPosInMs ) |
[C++] public delegate void CallbackTracksboardPlayHeadPos ( bool bPlayHeadAvailable, Int32 nPosInMs ) |
Parameter |
Description |
||||||
|
|
||||||
bPlayHeadAvailable |
Boolean value representing the flag for play head line availability. Supported values are the following:
|
||||||
nPosInMs |
The current play head line position, expressed in milliseconds |