CModel.Parameters: Difference between revisions

From ReliaWiki
Jump to navigation Jump to search
No edit summary
mNo edit summary
Line 2: Line 2:




<onlyinclude>Returns a '''[[ParamValues Class|ParamValues]]''' object that represents the parameter name and its value for an associated [[CModel_Class|cModel]] object.</onlyinclude>
<onlyinclude>Returns a '''[[ParamValues Class|ParamValues]]''' object that represents the parameter name and its value for an associated cModel object.</onlyinclude>


== Syntax==
== Syntax==

Revision as of 15:39, 28 April 2016

APIWiki.png


Member of: SynthesisAPI.cModel


Returns a ParamValues object that represents the parameter name and its value for an associated cModel object.

Syntax

.Parameters()


Example

VBA|VB.NET

 ... 

 'Add code to get an existing model or create a new one. 
 Dim AModel As New cModel
 ... 

 'Get a list of the model's parameters. 
 Dim ModelParameters() As ParamValues
 ModelParameters = AModel.Parameters()

 'Output example: Display the name and value of the first parameter. 
 Dim ParamName As String
 Dim ParamValue As Double
 ParamName = ModelParameters(0).ParamName
 ParamValue = ModelParameters(0).Value
 MsgBox (ParamName & " = " & ParamValue)