Leadtools.Dicom Namespace > DicomIodTable Class > LoadXml Method : LoadXml(String) Method |
'Usage Dim instance As DicomIodTable Dim file As String instance.LoadXml(file)
function Leadtools.Dicom.DicomIodTable.LoadXml(String)( file )
For more information, see the topic Working with DICOM Tables
Imports Leadtools Imports Leadtools.Dicom Public Sub TestDicomIodTable_LoadXml() 'Make sure to initialize the DICOM engine, this needs to be done only once 'In the whole application DicomEngine.Startup() 'We don't need to call this since the DicomEngine.Startup already does that for us 'These calls are for demonstration purposes only DicomIodTable.Instance.Reset() ' Since the table is empty, the count is zero. Dim count As Integer = 0 Dim iod As DicomIod = DicomIodTable.Instance.GetFirst(Nothing, True) Do While iod IsNot Nothing iod = DicomIodTable.Instance.GetNext(iod, True) count += 1 Loop ' Load the IOD table from the dicTableIodModule.xml file that ships with the toolkit DicomIodTable.Instance.LoadXml("C:\Users\Public\Documents\LEADTOOLS Images\dicTableIodModule.xml") ' Get the count -- it will be 158 iod = DicomIodTable.Instance.GetFirst(Nothing, True) Do While iod IsNot Nothing iod = DicomIodTable.Instance.GetNext(iod, True) count += 1 Loop DicomEngine.Shutdown() End Sub
using Leadtools; using Leadtools.Dicom; public void TestDicomIodTable_LoadXml() { //Make sure to initialize the DICOM engine, this needs to be done only once //In the whole application DicomEngine.Startup(); //We don't need to call this since the DicomEngine.Startup already does that for us //These calls are for demonstration purposes only DicomIodTable.Instance.Reset(); // Since the table is empty, the count is zero. int count = 0; DicomIod iod = DicomIodTable.Instance.GetFirst(null, true); while (iod != null) { iod = DicomIodTable.Instance.GetNext(iod, true); count++; } // Load the IOD table from the dicTableIodModule.xml file that ships with the toolkit DicomIodTable.Instance.LoadXml(@"C:\Users\Public\Documents\LEADTOOLS Images\dicTableIodModule.xml"); // Get the count -- it will be 158 iod = DicomIodTable.Instance.GetFirst(null, true); while (iod != null) { iod = DicomIodTable.Instance.GetNext(iod, true); count++; } DicomEngine.Shutdown(); }