Repository.BlockSim.ExportBlockSimXMLFile

From ReliaWiki
Revision as of 15:18, 19 February 2014 by John Leavitt (talk | contribs) (Created page with '{{Template:APIClass|Repository Class|Repository}} Synthesis API allows the programmer to export XML files out of a current project of BlockSim. The page contains the logic of tha…')
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search


Synthesis API allows the programmer to export XML files out of a current project of BlockSim. The page contains the logic of that importation. This page will demonstrate the exportation process.

Method Syntax

Public Function ExportBlockSimXMLFile( ByVal FileName As String ) As Boolean


Parameters

FileName XML file name

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")
' Export the XML File out of the Synthesis repository. 
DimSuccessExportXMLAs Boolean
 SuccessExportXML = MyRepository.ExportBlockSimXMLFile("XML_File_Name")

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")

Export the XML File out of the Synthesis repository.

       Dim SuccessExportXML As Boolean
       SuccessImportXML = MyRepository.ExportBlockSimXMLFile("XML_File_Name")