beautypg.com

9 irecoptions::reset – Teledyne LeCroy SierraFC Automation API User Manual

Page 54

background image

LeCroy Corporation

SierraFC M8-4 API Reference Manual

Manual Version 1.00

54

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

and

IFCRecOptions

methods.

Example


WSH:

Set Analyzer = WScript.CreateObject("LeCroy.FCAnalyzer")
Set RecOptions = Analyzer.GetRecordingOptions
RecOptions.SetRecMode 2 ' Event trigger
RecOptions.SetBufferSize 1024*1024 ' 1 MB
RecOptions.SetPostTriggerPercentage 60 ' 60%
. . .
RecOptions.Reset()

C++: