public DicomModuleType Type { get; }
@property (nonatomic, assign, readonly) LTDicomModuleType type;
public DicomModuleType getType()
public:
property DicomModuleType Type {
DicomModuleType get();
}
The Module type.
using Leadtools;
using Leadtools.Dicom;
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();
}
Help Collections
Raster .NET | C API | C++ Class Library | HTML5 JavaScript
Document .NET | C API | C++ Class Library | HTML5 JavaScript
Medical .NET | C API | C++ Class Library | HTML5 JavaScript
Medical Web Viewer .NET
Multimedia
Direct Show .NET | C API | Filters
Media Foundation .NET | C API | Transforms
Supported Platforms
.NET, Java, Android, and iOS/macOS Assemblies
Imaging, Medical, and Document
C API/C++ Class Libraries
Imaging, Medical, and Document
HTML5 JavaScript Libraries
Imaging, Medical, and Document