Repository.BlockSim.ImportBlockSimXMLFile: Difference between revisions

From ReliaWiki
Jump to navigation Jump to search
No edit summary
No edit summary
Line 1: Line 1:
{{Template:APIClass|Repository Class|Repository}}
{{Template:APIClass|Repository Class|Repository}}
Imports from XML file
Imports from an XML file
== Method Syntax  ==
== Method Syntax  ==
{{APIName|Public Function '''ImportBlockSimXMLFile'''(}}
{{APIName|Public Function '''ImportBlockSimXMLFile'''(}}

Revision as of 21:03, 22 January 2014


Imports from an XML file

Method Syntax

Public Function ImportBlockSimXMLFile( ByVal XMLFile As String ) As Boolean
Imports from an XML file to the current project.

Parameters

XMLFile The path for the XML file to import.

Usage Example

Code Block

' Declare a new repository connection class. 
Private WithEvents MyRepository As New Repository
' Connect to the Synthesis repository. 
DimSuccessAs Boolean=False
 Success = MyRepository.ConnectToSQLRepository("SQLServerPath", "SQLDatabaseName")
' Import the XML File to the Synthesis repository. 
DimSuccessImportXMLAs Boolean
 SuccessImportXML = MyRepository.ImportXFRACASXMLFile("XMLFilePath")

Reformatted 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.ConnectToSQLRepository("SQLServerPath", "SQLDatabaseName")

Import the XML File to the Synthesis repository.

       Dim SuccessImportXML As Boolean
       SuccessImportXML = MyRepository.ImportXFRACASXMLFile("XMLFilePath")