Remarks
Obtains the current position of the given vertical line. The position can be modified through the TracksBoard.VerticalLinePositionSet method or through the mouse.
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 Function VerticalLinePositionGet (
nUniqueId as Int32,
ByRef nPositionInMs as Int32
) as enumErrorCodes
|
|
[C#]
public enumErrorCodes VerticalLinePositionGet (
Int32 nUniqueId,
ref Int32 nPositionInMs
);
|
|
[C++]
public: enumErrorCodes VerticalLinePositionGet (
Int32 nUniqueId,
Int32 __gc *nPositionInMs
);
|
|
Parameter
|
Description
|
|
|
nUniqueId
|
Unique identification number assigned to the vertical line by the TracksBoard.VerticalLineAdd method
|
nPositionInMs
|
Reference that, on return from the method call, will contain the current position of the vertical line expressed in milliseconds
|
Return value
Value
|
Meaning
|
|
|
Negative value
|
An error occurred (see the LastError property for further error details)
|
enumErrorCodes.ERR_NOERROR (0)
|
The method call was successful.
|
|