Remarks
Removes the given line previously added through the Waveform.BitmapViewVerticalLineAdd method.
For further details about generating a waveform bitmap of the loaded sound, before starting its playback, refer to the How to obtain the sound's waveform tutorial.
Syntax
[Visual Basic]
Public Function BitmapViewVerticalLineRemove (
nUniqueId as Int16
) as enumErrorCodes
|
|
[C#]
public enumErrorCodes BitmapViewVerticalLineRemove (
Int16 nUniqueId
);
|
|
[C++]
public: enumErrorCodes BitmapViewVerticalLineRemove (
Int16 nUniqueId
);
|
|
Parameter
|
Description
|
|
|
nUniqueId
|
Unique identification number of the line to remove.
|
Return value
Value
|
Meaning
|
|
|
Negative value
|
An error occurred (see the LastError property for further error details)
|
enumErrorCodes.NOERROR (0)
|
The method call was successful.
|
|