Read only |
About Measurement Classes |
Description |
Returns a list of supported parameters for the specified measurement class. |
VB Syntax |
value = measClassProps.SupportedParameters |
Variable |
(Type) - Description |
value |
(Variant) - Variable to store the returned array of parameters. |
measClassProps |
A MeasurementClassProperties (Object) |
Return Type |
Variant array |
Default |
Not Applicable |
Examples |
'Access the MeasurmentClassProperties Object Set app = CreateObject("AgilentPNA835x.Application") Set cap = app.Capabilities Set measProps = cap.MeasurmentClassProperties ("Swept IMD") 'Read the supported parameters list=measProps.SupportedParameters dim i For i = 0 To UBound(list) msg = msg & list(i) & vbCrLf Next MsgBox msg |
C++ Syntax |
HRESULT get_SupportedParameters(Variant *value); |
Interface |
ICapabilities8 |