Leadtools.Dicom Namespace > DicomUidTable Class > LoadXml Method : LoadXml(String) Method |
'Usage Dim instance As DicomUidTable Dim file As String instance.LoadXml(file)
ObjectiveC Syntax
function Leadtools.Dicom.DicomUidTable.LoadXml(String)( file )
For more information, see the topic Working with DICOM Tables
Public Sub TestDicomUidTable_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 DicomUidTable.Instance.Reset() ' Since the table is empty, the count is zero. Dim count As Integer = DicomUidTable.Instance.GetCount() ' Load the UID table from the dicTableUid.xml file that ships with the toolkit DicomUidTable.Instance.LoadXml("C:\Users\Public\Documents\LEADTOOLS Images\dicTableUid.xml") ' Get the count -- it will be 295 count = DicomUidTable.Instance.GetCount() DicomEngine.Shutdown() End Sub
public void TestDicomUidTable_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 DicomUidTable.Instance.Reset(); // Since the table is empty, the count is zero. int count = DicomUidTable.Instance.GetCount(); // Load the UID table from the dicTableUid.xml file that ships with the toolkit DicomUidTable.Instance.LoadXml(@"C:\Users\Public\Documents\LEADTOOLS Images\dicTableUid.xml"); // Get the count -- it will be 295 count = DicomUidTable.Instance.GetCount(); DicomEngine.Shutdown(); }
Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2