Repository.BlockSim.ExportBlockSimXMLFile: Difference between revisions
Jump to navigation
Jump to search
Kate Racaza (talk | contribs) mNo edit summary |
Kate Racaza (talk | contribs) No edit summary |
||
(2 intermediate revisions by the same user not shown) | |||
Line 2: | Line 2: | ||
<onlyinclude>Exports data from | <onlyinclude>Exports data from the current BlockSim project to a new XML file. Returns a '''Boolean''' value; when true, indicates a successful export.</onlyinclude> | ||
'''Remarks''': The XML file can include the block properties and information on how the blocks are connected in a reliability block diagram or fault tree diagram. Data on visual aspects, such as diagram style settings, block style settings, etc., are not supported. | |||
== Syntax == | == Syntax == | ||
Line 18: | Line 19: | ||
'''VBA|VB.NET''' | '''VBA|VB.NET''' | ||
{{APIComment|' | {{APIComment|'Declare a new Repository object and connect to a Synthesis repository.}} | ||
{{APIPrefix|Dim}} MyRepository {{APIPrefix|As New}} Repository | {{APIPrefix|Dim}} MyRepository {{APIPrefix|As New}} Repository | ||
MyRepository.ConnectToAccessRepository({{APIString|"C:\RSRepository1.rsr10"}}) | |||
{{APIComment|'Export the data from project #1 in the repository. Name the file "MyBlockSimData.xml" and save it in the C: drive.}} | {{APIComment|'Export the data from project #1 in the repository. Name the file "MyBlockSimData.xml" and save it in the C: drive.}} | ||
MyRepository.Project.SetCurrentProject(1) | MyRepository.Project.SetCurrentProject(1) | ||
MyRepository.BlockSim.ExportBlockSimXMLFile({{APIString|"C:\MyBlockSimData.xml"}}) | MyRepository.BlockSim.ExportBlockSimXMLFile({{APIString|"C:\MyBlockSimData.xml"}}) |
Latest revision as of 20:31, 18 August 2016
Member of: SynthesisAPI.Repository
Exports data from the current BlockSim project to a new XML file. Returns a Boolean value; when true, indicates a successful export.
Remarks: The XML file can include the block properties and information on how the blocks are connected in a reliability block diagram or fault tree diagram. Data on visual aspects, such as diagram style settings, block style settings, etc., are not supported.
Syntax
.BlockSim.ExportBlockSimXMLFile(FileName)
Parameters
FileName
- Required. String. The save location and name for the new XML file.
Example
This example assumes that reliability block diagrams exist in the first available project in the repository.
VBA|VB.NET 'Declare a new Repository object and connect to a Synthesis repository. Dim MyRepository As New Repository MyRepository.ConnectToAccessRepository("C:\RSRepository1.rsr10") 'Export the data from project #1 in the repository. Name the file "MyBlockSimData.xml" and save it in the C: drive. MyRepository.Project.SetCurrentProject(1) MyRepository.BlockSim.ExportBlockSimXMLFile("C:\MyBlockSimData.xml")