Read only
About ECAL

IsECALModuleFoundEx Property


Description

This property replaces IsECALModuleFound Property.

Returns true or false depending on whether communication was established between the PNA and the specified ECal module.

 VB Syntax

modFound = cal.IsECALModuleFoundEx (module)

Variable

(Type) - Description

modFound

(boolean) - Variable to store the returned test result.

True - The PNA identified the presence of the specified ECal module.

False - The PNA did NOT identify the presence of the specified ECal module.

cal

(object) - A Calibrator object

module

(long integer)  ECal module.

Choose from modules 1 through 8

Use GetECALModuleInfoEx to return the model and serial number of each module.

Return Type

Boolean

Default

Not applicable

Examples

Set cal = pna.ActiveChannel.Calibrator

moduleFound = cal.IsECALModuleFoundEx(1)

C++ Syntax

HRESULT get_IsECALModuleFoundEx( long moduleNumber, VARIANT_BOOL *bModuleFound);

Interface

ICalibrator4