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]
Public Function VerticalLineDescriptionSet (
nUniqueId as Int32,
strDescription as String
) as enumErrorCodes
|
|
[C#]
public enumErrorCodes VerticalLineDescriptionSet (
Int32 nUniqueId,
string strDescription
);
|
|
[C++]
public: enumErrorCodes VerticalLineDescriptionSet (
Int32 nUniqueId,
string 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.
|
|