Remarks
Sets the friendly name of the given line.
For details about the use of the Waveform Analyzer refer to the How to use the Waveform Analyzer section.
For further details about methods of the Waveform Analyzer refer to the WaveformAnalyzer object section.
Syntax
[Visual Basic]
control.WaveformAnalyzer.VerticalLineNameSet (
nUniqueId as Integer,
strFriendlyName as String
) as enumErrorCodes
|
|
[C++]
short control.WaveformAnalyzer.VerticalLineNameSet (
short nUniqueId,
LPCTSTR strFriendlyName
);
|
|
Parameter
|
Description
|
|
|
nUniqueId
|
Unique identification number assigned to the line
|
strFriendlyName
|
String containing the friendly name to assign to the vertical line
|
Return value
Value
|
Meaning
|
|
|
Negative value
|
An error occurred, check the LastError property value in order to get the error code
|
enumErrorCodes.ERR_NOERROR (0)
|
The method call was successful
|
|