#include "Ltdic.h"
pDICOMMODULE LDicomDS::InsertModule(nModule, bOptional)
Inserts a new module in the Data Set.
Module constant the indicates the module being inserted. For a list of default values, refer to IOD Module Constants.
Flag that indicates which elements of the module to insert. Possible values are:
Value | Meaning |
---|---|
TRUE | Insert all elements of the specified module. |
FALSE | Insert only the mandatory elements of the specified module. |
Value | Meaning |
---|---|
!NULL | A pointer to a DICOMMODULE structure containing the newly inserted item. |
NULL | Not enough memory to insert the item. |
LEAD controls the placement of the module in the Data Set.
Required DLLs and Libraries
Win32, x64
This example inserts a module in Data Set.
L_INT LDicomDS_InsertModuleExample()
{
LDicomDS * pDS;
pDICOMMODULE pModule;
pDS = new LDicomDS(NULL);
pDS->InitDS( CLASS_CT_IMAGE_STORAGE, 0);
pModule = pDS->InsertModule(MODULE_PATIENT_STUDY, TRUE);
delete pDS;
return DICOM_SUCCESS;
}
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