Write/Read
About ADC Multiple Recordings

ADCMultRecState Property


Description

Set and read the ON/OFF state of the multiple recording function. Multiple recording allows the ADC Record Size to be divided and acquired in smaller "chunks" and also to specify a wait period between these acquisitions.

VB Syntax

sa.ADCMultRecState = value

Variable

(Type) - Description

sa

A SpectrumAnalyzer (object)

value

(Boolean) Choose from:

0 - OFF - ADC record size "chunking" OFF.

1 - ON - ADC record size "chunking" ON.

Learn about these settings.

Return Type

Boolean

Default

0

Examples

sa.ADCMultRecState = OFF   Write

value = sa.ADCMultRecState 'Read

See an example program.

C++ Syntax

HRESULT put_ADCMultRecState(VARIANT_BOOL bEnable);

HRESULT get_ADCMultRecState(VARIANT_BOOL* bEnable);

Interface

ISpectrumAnalyzer