C#
VB
Java
WinRT C#
C++
Removes all items from the IOD Structure.
public void Reset() Public Sub Reset() public void Reset() public void reset() function Leadtools.Dicom.DicomIodTable.Reset() public:void Reset();
using Leadtools;using Leadtools.Dicom;public void RecursiveReadIOD(DicomIod parentIOD){DicomIod iod;if (parentIOD == null){iod = DicomIodTable.Instance.GetFirst(null, true);}else{iod = DicomIodTable.Instance.GetChild(parentIOD);}while (iod != null){// Over here we can show the information about this IOD such as// DicomIod.Type, DicomIod.Type, DicomIod.Usage and DicomIod.Descriptionif (DicomIodTable.Instance.GetChild(iod) != null){RecursiveReadIOD(iod);}iod = DicomIodTable.Instance.GetNext(iod, true);}}void TestIODTable(){//Make sure to initialize the DICOM engine, this needs to be done only once.DicomEngine.Startup();//We don't need to call this since the DicomEngine.Startup already does that for us//These calls are for demonstration purposes onlyDicomIodTable.Instance.Reset();DicomIodTable.Instance.Default();// We can find the number of modules in any classint moduleCount = DicomIodTable.Instance.GetModuleCount(DicomClassType.SCImageStorage);// We can in here call any of the Find methods including FindModule and FindModuleByIndex,// in this sample we are searching for a DICOM class, this is why we are using FindClassDicomIod iod = DicomIodTable.Instance.FindClass(DicomClassType.SCImageStorage);// We can get the name of the IODstring name = iod.ToString();DicomIodTable.Instance.Delete(iod);DicomIod iod1 = DicomIodTable.Instance.Insert(null, false, DicomClassType.SCImageStorage, "Secondary Capture Image Storage", DicomIodType.Class, DicomIodUsageType.MandatoryModule, "Description of the class goes in here");Debug.Assert(DicomIodTable.Instance.Exists(iod1) == true);DicomIodTable.Instance.SetName(iod1, "Secondary Capture Image Storage 1");//Go through all the IODs in the IOD tableRecursiveReadIOD(null);DicomEngine.Shutdown();}
Imports LeadtoolsImports Leadtools.DicomPrivate Sub RecursiveReadIOD(ByVal parentIOD As DicomIod)Dim iod As DicomIodIf parentIOD Is Nothing Theniod = DicomIodTable.Instance.GetFirst(Nothing, True)Elseiod = DicomIodTable.Instance.GetChild(parentIOD)End IfDo While Not iod Is Nothing' Over here we can show the information about this IOD such as' DicomIod.Type, DicomIod.Type, DicomIod.Usage and DicomIod.DescriptionIf Not DicomIodTable.Instance.GetChild(iod) Is Nothing ThenRecursiveReadIOD(iod)End Ifiod = DicomIodTable.Instance.GetNext(iod, True)LoopEnd SubPrivate Sub TestIODTable()'Make sure to initialize the DICOM engine, this needs to be done only once'In the whole applicationDicomEngine.Startup()'We don't need to call this since the DicomEngine.Startup already does that for us'These calls are for demonstration purposes onlyDicomIodTable.Instance.Reset()DicomIodTable.Instance.Default()' We can find the number of modules in any classDim moduleCount As Integer = DicomIodTable.Instance.GetModuleCount(DicomClassType.SCImageStorage)' We can in here call any of the Find methods including FindModule and FindModuleByIndex,' in this sample we are searching for a DICOM class, this is why we are using FindClassDim iod As DicomIod = DicomIodTable.Instance.FindClass(DicomClassType.SCImageStorage)' We can get the name of the IODDim name As String = iod.ToString()DicomIodTable.Instance.Delete(iod)Dim iod1 As DicomIod = DicomIodTable.Instance.Insert(Nothing, False, DicomClassType.SCImageStorage, "Secondary Capture Image Storage",DicomIodType.Class, DicomIodUsageType.MandatoryModule, "Description of the class goes in here")Debug.Assert(DicomIodTable.Instance.Exists(iod1) = True)DicomIodTable.Instance.SetName(iod1, "Secondary Capture Image Storage 1")'Go through all the IODs in the IOD tableRecursiveReadIOD(Nothing)DicomEngine.Shutdown()End Sub
using Leadtools;using Leadtools.Dicom;using Leadtools.Examples;public void RecursiveReadIOD(DicomIod parentIOD){DicomIod iod;if (parentIOD == null){iod = DicomIodTable.Instance.GetFirst(null, true);}else{iod = DicomIodTable.Instance.GetChild(parentIOD);}while (iod != null){// Over here we can show the information about this IOD such as// DicomIod.Type, DicomIod.Type, DicomIod.Usage and DicomIod.Descriptionif (DicomIodTable.Instance.GetChild(iod) != null){RecursiveReadIOD(iod);}iod = DicomIodTable.Instance.GetNext(iod, true);}}public void TestIODTable(){//Make sure to initialize the DICOM engine, this needs to be done only once//In the whole applicationDicomEngine.Startup();//We don't need to call this since the DicomEngine.Startup already does that for us//These calls are for demonstration purposes onlyDicomIodTable.Instance.Reset();DicomIodTable.Instance.Default();// We can in here call any of the Find methods including FindModule and FindModuleByIndex,// in this sample we are searching for a DICOM class, this is why we are using FindClassDicomIod iod = DicomIodTable.Instance.FindClass(DicomClassType.SCImageStorage);DicomIodTable.Instance.Delete(iod);DicomIod iod1 = DicomIodTable.Instance.Insert(null, false, DicomClassType.SCImageStorage, "Secondary Capture Image Storage", DicomIodType.Class, DicomIodUsageType.MandatoryModule, "Description of the class goes in here");Debug.Assert(DicomIodTable.Instance.Exists(iod1) == true);DicomIodTable.Instance.SetName(iod1, "Secondary Capture Image Storage 1");//Go through all the IODs in the IOD tableRecursiveReadIOD(null);DicomEngine.Shutdown();}
Imports LeadtoolsImports Leadtools.DicomPublic Sub RecursiveReadIOD(ByVal parentIOD As DicomIod)Dim iod As DicomIodIf parentIOD Is Nothing Theniod = DicomIodTable.Instance.GetFirst(Nothing, True)Elseiod = DicomIodTable.Instance.GetChild(parentIOD)End IfDo While Not iod Is Nothing' Over here we can show the information about this IOD such as' DicomIod.Type, DicomIod.Type, DicomIod.Usage and DicomIod.DescriptionIf Not DicomIodTable.Instance.GetChild(iod) Is Nothing ThenRecursiveReadIOD(iod)End Ifiod = DicomIodTable.Instance.GetNext(iod, True)LoopEnd SubPublic Sub TestIODTable()'Make sure to initialize the DICOM engine, this needs to be done only once'In the whole applicationDicomEngine.Startup()'We don't need to call this since the DicomEngine.Startup already does that for us'These calls are for demonstration purposes onlyDicomIodTable.Instance.Reset()DicomIodTable.Instance.Default()' We can in here call any of the Find methods including FindModule and FindModuleByIndex,' in this sample we are searching for a DICOM class, this is why we are using FindClassDim iod As DicomIod = DicomIodTable.Instance.FindClass(DicomClassType.SCImageStorage)DicomIodTable.Instance.Delete(iod)Dim iod1 As DicomIod = DicomIodTable.Instance.Insert(Nothing,False,DicomClassType.SCImageStorage,"Secondary Capture Image Storage",DicomIodType.Class, DicomIodUsageType.MandatoryModule,"Description of the class goes in here")Debug.Assert(DicomIodTable.Instance.Exists(iod1) = True)DicomIodTable.Instance.SetName(iod1, "Secondary Capture Image Storage 1")'Go through all the IODs in the IOD tableRecursiveReadIOD(Nothing)DicomEngine.Shutdown()End Sub
Raster .NET | C API | C++ Class Library | JavaScript HTML5
Document .NET | C API | C++ Class Library | JavaScript HTML5
Medical .NET | C API | C++ Class Library | JavaScript HTML5
Medical Web Viewer .NET
