Repository.Model.GetModel: Difference between revisions
Jump to navigation
Jump to search
Kate Racaza (talk | contribs) No edit summary |
Kate Racaza (talk | contribs) No edit summary |
||
Line 2: | Line 2: | ||
{{Template:API}} | {{Template:API}} | ||
Gets the model with the designated ID number and returns it as a '''[[CModel Class|cModel]]''' object. Returns nothing if the model does not exist or is not in the current project. | Gets the model with the designated ID number and returns it as a '''[[CModel Class|cModel]]''' object. Returns nothing if the model does not exist or is not in the current project. | ||
== Syntax == | == Syntax == | ||
Line 18: | Line 16: | ||
== Example == | == Example == | ||
These examples assume that a model with | These examples assume that a model with ID# 47 exists in the repository. | ||
'''VBA''' | '''VBA''' | ||
{{APIPrefix|Dim}} MyRepository {{APIPrefix|As New}} Repository | {{APIPrefix|Dim}} MyRepository {{APIPrefix|As New}} Repository | ||
{{APIComment|...'Add code to connect to a Synthesis repository.}} | {{APIComment|...'Add code to connect to a Synthesis repository.}} | ||
{{APIComment| | |||
{{APIComment|'Get model #47 from project#1.}} | |||
{{APIPrefix|Dim}} AModel {{APIPrefix|As}} cModel | {{APIPrefix|Dim}} AModel {{APIPrefix|As}} cModel | ||
MyRepository.Project.SetCurrentProject(1) | |||
{{APIPrefix|Set}} AModel = MyRepository.Model.GetModel(47) | {{APIPrefix|Set}} AModel = MyRepository.Model.GetModel(47) | ||
'''VB.NET''' | '''VB.NET''' | ||
{{APIPrefix|Dim}} MyRepository {{APIPrefix|As New}} Repository | {{APIPrefix|Dim}} MyRepository {{APIPrefix|As New}} Repository | ||
{{APIComment|...'Add code to connect to a Synthesis repository.}} | {{APIComment|...'Add code to connect to a Synthesis repository.}} | ||
{{APIComment| | |||
{{APIComment|'Get model #47 from project#1.}} | |||
{{APIPrefix|Dim}} AModel {{APIPrefix|As}} cModel | {{APIPrefix|Dim}} AModel {{APIPrefix|As}} cModel | ||
MyRepository.Project.SetCurrentProject(1) | |||
AModel = MyRepository.Model.GetModel(47) | AModel = MyRepository.Model.GetModel(47) |
Revision as of 15:54, 14 July 2015
Member of: SynthesisAPI10Repository
Gets the model with the designated ID number and returns it as a cModel object. Returns nothing if the model does not exist or is not in the current project.
Syntax
object.Model.GetModel(Integer)
where object is a variable that represents a Repository object.
Parameters
Name | Description | |
---|---|---|
IDborder="0" cellpadding="5" cellspacing="0" style="border-collapse: collapse; text-align: left; cellborder" | ||
Name | Status | Integer. The ID number of the model to retrieve. |
Example
These examples assume that a model with ID# 47 exists in the repository.
VBA Dim MyRepository As New Repository ...'Add code to connect to a Synthesis repository. 'Get model #47 from project#1. Dim AModel As cModel MyRepository.Project.SetCurrentProject(1) Set AModel = MyRepository.Model.GetModel(47)
VB.NET Dim MyRepository As New Repository ...'Add code to connect to a Synthesis repository. 'Get model #47 from project#1. Dim AModel As cModel MyRepository.Project.SetCurrentProject(1) AModel = MyRepository.Model.GetModel(47)