Remarks
Retrieves the waveform range currently displayed on the analyzer window. The current range can be modified calling the WaveformAnalyzer.SetDisplayRange method.
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.GetDisplayRange (
nBeginPosInMs as Long,
nEndPosInMs as Long
) as enumErrorCodes
|
|
[C++]
short control.WaveformAnalyzer.GetDisplayRange (
long *nBeginPosInMs,
long *nEndPosInMs
);
|
|
Parameter
|
Description
|
|
|
nBeginPosInMs
|
Reference that, after returning from the method call, will contain the displayed range start position, expressed in milliseconds
|
nEndPosInMs
|
Reference that, after returning from the method call, will contain the displayed range end position, expressed in milliseconds
|
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
|
|