Write/Read |
About Modifying Cal Kits |
Description |
Sets and returns a calibration kit type to be used for UNGUIDED calibration and for cal kit modification. To get a handle to this kit, use app.ActiveCalKit. Although an unlimited number of cal kits can be imported into the VNA, ONLY mechanical cal kits #1 through #95 can be accessed. There is also a CalKitType property for use during a Guided, SMC, and VMC Calibration. |
VB Syntax |
object.CalKitType = value |
Variable |
(Type) - Description |
object |
calkit (object) or Application (object) Note: app.CalKitType and calkit.calKitType perform exactly the same function. |
value |
(enum naCalKit) - Calibration Kit type. Choose from: 1 - naCalKit_User1 These enumerated values correspond with the calibration kit ID on the Advanced Cal Kit Modify dialog box. To change the cal kit name, use Name property. Note: Always check the list of available cal kits using CalKitTypes to ensure that the correct cal kit is selected. |
Return Type |
NACalKit |
Default |
Not Applicable |
Examples |
calkit.CalKitType = naCalKit_User27 |
kitype = app.CalKitType |
|
C++ Syntax |
HRESULT get_CalKitType(tagNACalKit *pVal); |
Interface |
IApplication |