ParamValues Class: Difference between revisions
Jump to navigation
Jump to search
Chris Kahn (talk | contribs) |
Chris Kahn (talk | contribs) |
||
Line 7: | Line 7: | ||
== Usage Example == | == Usage Example == | ||
{{APIComment|Declare a new repository connection class.}} | {{APIComment|'Declare a new repository connection class.}} | ||
Dim MyRepository As New Repository | Dim MyRepository As New Repository | ||
{{APIComment|Connect to the Synthesis repository.}} | {{APIComment|'Connect to the Synthesis repository.}} | ||
Dim Success As Boolean = False | Dim Success As Boolean = False | ||
Success = MyRepository.ConnectToRepository("RepositoryFileNamePath") | Success = MyRepository.ConnectToRepository("RepositoryFileNamePath") | ||
{{APIComment|Get the list of | {{APIComment|'Get the list of projects in the connected repository.}} | ||
Dim ListOfModels() As | Dim ListOfModels() As NameIdPair | ||
ListOfModels = MyRepository.GetAllModelsInfo() | ListOfModels = MyRepository.GetAllModelsInfo() | ||
{{APIComment|Select the ID of the model and retrieve it.}} | {{APIComment|'Select the ID of the model and retrieve it.}} | ||
Dim AModel as cModel | Dim AModel as cModel | ||
AModel = MyRepository.GetModel(ListOfModels(0).ID) | AModel = MyRepository.GetModel(ListOfModels(0).ID) | ||
{{APIComment|Get the list of | {{APIComment|'Get the list of model parameters.}} | ||
Dim ModelParameters() As ParamValues | Dim ModelParameters() As ParamValues | ||
ModelParameters = AModel.Parameters | ModelParameters = AModel.Parameters |
Revision as of 22:16, 17 April 2014
Model's parameter name and value.
Properties
- Value (as double) Gets the value of the parameter.
- ParamName (as string) Gets the name of the parameter.
Usage Example
'Declare a new repository connection class. Dim MyRepository As New Repository 'Connect to the Synthesis repository. Dim Success As Boolean = False Success = MyRepository.ConnectToRepository("RepositoryFileNamePath") 'Get the list of projects in the connected repository. Dim ListOfModels() As NameIdPair ListOfModels = MyRepository.GetAllModelsInfo() 'Select the ID of the model and retrieve it. Dim AModel as cModel AModel = MyRepository.GetModel(ListOfModels(0).ID) 'Get the list of model parameters. Dim ModelParameters() As ParamValues ModelParameters = AModel.Parameters Get the name of the model's first parameter. Dim ModelParamName as String ModelParamVame = ModelParameters(0).ParamName Get the value of the model's first parameter. Dim ModelParamValue as Double ModelParamValue = ModelParameters(0).Value