Leadtools.Dicom Requires Medical product license | Send comments on this topic. | Back to Introduction - All Topics | Help Version 16.5.9.25
DeleteModule Method
See Also  Example
Leadtools.Dicom Namespace > DicomDataSet Class : DeleteModule Method



module
The module to be deleted.
module
The module to be deleted.
Deletes a module from the Data Set.

Syntax

Visual Basic (Declaration) 
Public Sub DeleteModule( _
   ByVal module As DicomModuleType _
) 
Visual Basic (Usage)Copy Code
Dim instance As DicomDataSet
Dim module As DicomModuleType
 
instance.DeleteModule(module)
C# 
public void DeleteModule( 
   DicomModuleType module
)
C++/CLI 
public:
void DeleteModule( 
   DicomModuleType module
) 

Parameters

module
The module to be deleted.

Example

This example will initialize a DICOM Dataset and then insert and delete some of its modules.

Visual BasicCopy Code
Public Sub DicomModuleSample()
   'Make sure to initialize the DICOM engine, this needs to be done only once
   'In the whole application
   DicomEngine.Startup()

   Dim dicomDataset As DicomDataSet = New DicomDataSet()
   Using (dicomDataset)

      dicomDataset.Initialize(DicomClassType.DXImageStoragePresentation, DicomDataSetInitializeType.ExplicitVRLittleEndian)
      dicomDataset.DeleteModule(DicomModuleType.Patient)
      dicomDataset.InsertModule(DicomModuleType.Patient, False)
      Dim [module] As DicomModule = dicomDataset.FindModule(DicomModuleType.Patient)
      Debug.Assert(Not [module] Is Nothing)
      Dim found As Boolean = False
      Dim i As Integer = 0
      Do While i < dicomDataset.ModuleCount
         [module] = dicomDataset.FindModuleByIndex(i)
         If [module].Type = DicomModuleType.Patient Then
            found = True
         End If
         i += 1
      Loop
      Debug.Assert(found)
   End Using

   DicomEngine.Shutdown()
End Sub
C#Copy Code
public void DicomModuleSample() 

   //Make sure to initialize the DICOM engine, this needs to be done only once  
   //In the whole application 
   DicomEngine.Startup(); 
   using (DicomDataSet dicomDataset = new DicomDataSet()) 
   { 
      dicomDataset.Initialize(DicomClassType.DXImageStoragePresentation, DicomDataSetInitializeType.ExplicitVRLittleEndian); 
      dicomDataset.DeleteModule(DicomModuleType.Patient); 
      dicomDataset.InsertModule(DicomModuleType.Patient, false); 
      DicomModule module = dicomDataset.FindModule(DicomModuleType.Patient); 
      Debug.Assert(module != null); 
      bool found = false; 
      for (int i = 0; i < dicomDataset.ModuleCount; i++) 
      { 
         module = dicomDataset.FindModuleByIndex(i); 
         if (module.Type == DicomModuleType.Patient) 
         { 
            found = true; 
         } 
      } 
      Debug.Assert(found); 
   } 
   DicomEngine.Shutdown(); 
}

Remarks

You can remove all items from the Data Set using Reset.

Requirements

Target Platforms: Microsoft .NET Framework 3.0, Windows XP, Windows Server 2003 family, Windows Server 2008 family

See Also

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