Description |
Note: This command replaces CompatibleCalKits Property Returns a comma-separated list of valid kits that use the specified connector type. This includes mechanical cal kits, applicable characterizations found within ECal modules currently connected to the VNA, and all user characterizations stored in VNA disk memory. For ECal modules, the returned list includes the serial numbers. See the ECalUserCharacterizer Object. Use items in the list to select the kit to be used with the CalKitType Property |
VB Syntax |
value = guidCal.GetCompatibleCalKits (connectorType) |
Variable |
(Type) - Description |
value |
(Variant) - Variable to store the returned list of cal kits. One-dimensional array of string values. |
guidCal |
A GuidedCalibration (object) |
connectorType |
(String) Connector type for which compatible cal kits will be returned. Use ValidConnectorType to return a list of connector type strings. Use ConnectorType to set the connector type for each port to be calibrated. |
Return Type |
Variant – Containing one-dimensional array of strings. |
Default |
Not Applicable |
Examples |
Dim kits As Variant kits = guidedCal.GetCompatibleCalKits "Type N (50) male" |
C++ Syntax |
HRESULT GetCompatibleCalKits(BSTR connector, VARIANT* Kits); |
Interface |
IGuidedCalibration5 |