Remarks
Enables/disables the usage of scrollbars during playback.
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 class section.
Syntax
[Visual Basic]
Public Function EnableScrollbarsDuringPlayback (
bEnable as Boolean
) as enumErrorCodes
|
|
[C#]
public enumErrorCodes EnableScrollbarsDuringPlayback (
bool bEnable
);
|
|
[C++]
public: enumErrorCodes EnableScrollbarsDuringPlayback (
bool bEnable
);
|
|
Parameter
|
Description
|
|
|
bEnable
|
Boolean value that specifies if scrollbars are enabled or disabled during playback.
Supported values are the following:
Value
|
Meaning
|
false (default)
|
Scrollbars are disabled during playback
|
true
|
Scrollbars are enabled during playback
|
|
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.
|
|