Repository.Model.GetAllModels: Difference between revisions

From ReliaWiki
Jump to navigation Jump to search
No edit summary
Line 3: Line 3:
== Property Syntax==
== Property Syntax==


{{Template:GetAllModels}}
{{Template:Repository.GetAllModels}}
 
== Usage Example ==
{{APIComment|Declare a new repository connection class.}}
        Private WithEvents MyRepository As New Repository
 
{{APIComment|Connect to the Synthesis repository.}}
        Dim Success As Boolean = False
        Success = MyRepository.ConnectToRepository("RepositoryFileNamePath")
 
{{APIComment|Get an array of [[cModel Class|cModel]] representing all the models in the Current Project.}}
        Dim ListOfModels() As [[cModel Class|cModel]]
        ListOfModels = MyRepository.GetAllModels

Revision as of 17:11, 18 September 2013



Property Syntax

Template:Repository.GetAllModels

Usage Example

Declare a new repository connection class.

       Private WithEvents MyRepository As New Repository

Connect to the Synthesis repository.

       Dim Success As Boolean = False
       Success = MyRepository.ConnectToRepository("RepositoryFileNamePath")

Get an array of cModel representing all the models in the Current Project.

       Dim ListOfModels() As cModel
       ListOfModels = MyRepository.GetAllModels