Remarks
Modifies parameters of an existing vertical line displayed over the TracksBoard's session. Current parameters can be obtained through the TracksBoard.VerticalLineParamsGet method.
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]
control.TracksBoard.VerticalLineParamsSet (
nUniqueId as Long,
settings as Long
) as enumErrorCodes
|
|
[C++]
short control.TracksBoard.VerticalLineParamsSet (
long nUniqueId,
void *settings
);
|
|
Parameter
|
Description
|
|
|
nUniqueId
|
Unique identification number assigned to the vertical line by the TracksBoard.VerticalLineAdd method
|
settings
|
Address of a structure of type WANALYZER_VERTICAL_LINE that contains the new settings for the vertical line.
|
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.
|
|