LEADTOOLS Medical (Leadtools.Dicom assembly)

LoadXml(String) Method

Show in webframe
Example 







string that contains the name of the XML file containing the DICOM element tags to load.
Loads the Element Tags contained in file into the internal DICOM Element Tag Table.
Syntax
public void LoadXml( 
   string file
)
'Declaration
 
Public Overloads Sub LoadXml( _
   ByVal file As String _
) 
'Usage
 
Dim instance As DicomTagTable
Dim file As String
 
instance.LoadXml(file)
public void LoadXml( 
   string file
)

            

            
 function Leadtools.Dicom.DicomTagTable.LoadXml(String)( 
   file 
)
public:
void LoadXml( 
   String^ file
) 

Parameters

file
string that contains the name of the XML file containing the DICOM element tags to load.
Remarks
Beginning with version 18 of the toolkit, you can easily and quickly customize the DICOM Element Tag table by editing the dicTableElement.xml file that is found in the LEADTOOLS Sample Images folder. The dicTableElement.xml file is a human-readable XML file that lists all of the DICOM Element Tags currently defined in the DICOM Specification. You can edit this with any text editor (for example, notepad) to add or remove DICOM Elements. Then call LoadXml(String) and pass the full path of the dicTableElement.xml file. Note that calling LoadXml(String) will first remove all DICOM elements that are already present in the table.

For more information, see the Working with DICOM Tablestopic .

Example
Copy Code  
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();
}
Requirements

Target Platforms

See Also

Reference

DicomTagTable Class
DicomTagTable Members
Overload List
Delete Method
Reset Method
Default Method
Insert Method

 

 


Products | Support | Contact Us | Copyright Notices
© 2006-2014 All Rights Reserved. LEAD Technologies, Inc.

Leadtools.Dicom requires a Medical toolkit server license and unlock key. For more information, refer to: Imaging Pro/Document/Medical Features