beautypg.com

9 irecoptions::reset, Resets the recording options to the initial state, Parameters – Teledyne LeCroy Automation API for Teledyne LeCroy PETracer_PETrainer User Manual

Page 67: Return values, Remarks, Example, Recoptions.reset, Irecoptions::reset

background image

Teledyne LeCroy

Automation API for PETracer/PETrainer

62

5.1.9 IRecOptions::Reset


HRESULT Reset ( )


Resets the recording options to the initial state.

Parameters

Return values


Remarks


For default values of recording options, see the remarks sections of all IRecOptions, IPERecOptions,

and IPERecOptions2 methods.

Example


WSH:

Set Analyzer = WScript.CreateObject( “CATC.PETracer” )
Set RecOptions = Analyzer.GetRecordingOptions
RecOptions.SetRecMode 2 ' Event trigger
RecOptions.SetBufferSize 1024*1024 ' 1Mb
RecOptions.SetPostTriggerPercentage 60 ' 60%
. . .
RecOptions.Reset

C++: