IModelManager.GetParameterVectorValues Method
- Updated2023-02-21
- 3 minute(s) read
This method is deprecated in NI VeriStand 2010 and later. Use the GetParameterVectorValues method of the IModelManager2 interface instead.
Namespace:
NationalInstruments.VeriStand.ClientAPIGets the vector values for a model parameter present on the first target. You must use the GetParameterVectorValues method of the IModelManager2 interface if you want to specify one of multiple targets.
Assembly: NationalInstruments.VeriStand.ClientAPI (in NationalInstruments.VeriStand.ClientAPI.dll) Version: 2013.0.0.0 (2013.0.0.0)
| Visual Basic (Declaration) |
|---|
Function GetParameterVectorValues ( _ parameter As String, _ <OutAttribute> ByRef rowDim As UInteger, _ <OutAttribute> ByRef colDim As UInteger, _ <OutAttribute> ByRef values As Double() _ ) As Error |
| C# |
|---|
Error GetParameterVectorValues( string parameter, out uint rowDim, out uint colDim, out double[] values ) |
| Visual C++ |
|---|
Error^ GetParameterVectorValues( String^ parameter, [OutAttribute] unsigned int% rowDim, [OutAttribute] unsigned int% colDim, [OutAttribute] array<double>^% values ) |
Parameters
- parameter
- Type: System.String
The parameter for which to get values. Use the GetParametersList method to get a list of model parameters from which you can select this input.
- rowDim
- Type:
System.UInt32
%
The number of rows in the vector array.
- colDim
- Type:
System.UInt32
%
The number of columns in the vector array.
- values
- Type:
System.Double
%
The vector values.