Repository.BlockSim.ImportBlockSimXMLFile: Difference between revisions
Jump to navigation
Jump to search
Albert Szeto (talk | contribs) No edit summary |
John Leavitt (talk | contribs) No edit summary |
||
Line 1: | Line 1: | ||
{{Template:APIClass|Repository Class|Repository}} | {{Template:APIClass|Repository Class|Repository}} | ||
Imports from XML file | |||
== Method Syntax == | == Method Syntax == | ||
{{APIName|ImportBlockSimXMLFile(}} | {{APIName|'''ImportBlockSimXMLFile'''(}} | ||
{{APIPrefix|ByVal}} | {{APIPrefix|ByVal}} | ||
{{APIName|XMLFile}} | {{APIName|XMLFile}} |
Revision as of 23:47, 23 September 2013
Imports from XML file
Method Syntax
ImportBlockSimXMLFile(
ByVal
XMLFile
As String
)
As As Boolean
Imports from XML file to the current project.
Parameters
XMLFile The path for the XML file to import.
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")
Import the XML File to the Synthesis repository.
Dim SuccessImportXML As Boolean SuccessImportXML = MyRepository.ImportBlockSimXMLFile("XMLFilePath")