Remarks
Sets the description of the given vertical line. The current description can be obtained through the TracksBoard.VerticalLineDescriptionGet 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.VerticalLineDescriptionSet (
nUniqueId as Long,
strDescription as String
) as enumErrorCodes
|
|
[C++]
short control.TracksBoard.VerticalLineDescriptionSet (
long nUniqueId,
LPCTSTR strDescription
);
|
|
Parameter
|
Description
|
|
|
nUniqueId
|
Unique identification number assigned to the vertical line by the TracksBoard.VerticalLineAdd method
|
strDescription
|
String containing the description to assign to 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.
|
|