Write/Read |
About ADC Multiple Recordings |
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. |
Return Type |
Boolean |
Default |
0 |
Examples |
sa.ADCMultRecState = OFF Write |
value = sa.ADCMultRecState 'Read |
|
C++ Syntax |
HRESULT put_ADCMultRecState(VARIANT_BOOL bEnable); HRESULT get_ADCMultRecState(VARIANT_BOOL* bEnable); |
Interface |
ISpectrumAnalyzer |