Repository.Model.GetModel
Jump to navigation
Jump to search
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 the ID#47 exists in the project.
VBA
Dim MyRepository As New Repository ...'Add code to connect to a Synthesis repository. ...'Add code to set one of the projects in the repository as the current (active) project.
Dim AModel As cModel Set AModel = MyRepository.Model.GetModel(47)
VB.NET
Dim MyRepository As New Repository ...'Add code to connect to a Synthesis repository. ...'Add code to set one of the projects in the repository as the current (active) project.
Dim AModel As cModel AModel = MyRepository.Model.GetModel(47)