Leadtools.Dicom Namespace > DicomTagTable Class > LoadXml Method : LoadXml(String) Method |
'Usage Dim instance As DicomTagTable Dim file As String instance.LoadXml(file)
function Leadtools.Dicom.DicomTagTable.LoadXml(String)( file )
For more information, see the Working with DICOM Tablestopic .
Imports Leadtools Imports Leadtools.Dicom Public Sub TestDicomTagTable_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 DicomTagTable.Instance.Reset() ' Since the table is empty, the count is zero. Dim count As Integer = DicomTagTable.Instance.GetCount() ' Load the DICOM Element Tag table from the dicTableElement.xml file that ships with the toolkit DicomTagTable.Instance.LoadXml("C:\Users\Public\Documents\LEADTOOLS Images\dicTableElement.xml") ' Get the count -- it will be around 3000 count = DicomTagTable.Instance.GetCount() DicomEngine.Shutdown() End Sub
using Leadtools; using Leadtools.Dicom; public void TestDicomTagTable_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 DicomTagTable.Instance.Reset(); // Since the table is empty, the count is zero. int count = DicomTagTable.Instance.GetCount(); // Load the DICOM Element Tag table from the dicTableElement.xml file that ships with the toolkit DicomTagTable.Instance.LoadXml(@"C:\Users\Public\Documents\LEADTOOLS Images\dicTableElement.xml"); // Get the count -- it will be around 3000 count = DicomTagTable.Instance.GetCount(); DicomEngine.Shutdown(); }