#include "Ltdic.h"
pDICOMMODULE LDicomDS::FindModule(nModule)
Returns a pointer to a DICOMMODULE structure that contains information about the specified module.
Module constant that specifies the module to find. For a list of default module constants, refer to IOD Module Constants.
Value | Meaning |
---|---|
!NULL | A pointer to a DICOMMODULE Structure that contains information about the specified module. |
NULL | The specified module was not found. |
To find the module at a specific index use LDicomDS::FindIndexModule.
Required DLLs and Libraries
Win32, x64
This example checks if a module exists in a Data Set.
L_INT LDicomDS_FindModuleExample()
{
LDicomDS* pDS;
pDICOMMODULE pModule;
pDS = new LDicomDS(NULL);
pDS->InitDS( CLASS_XA_BIPLANE_IMAGE_STORAGE_RETIRED, 0);
pModule = pDS->FindModule(MODULE_GENERAL_STUDY);
MessageBox(NULL, (pModule != NULL) ? TEXT("TRUE") : TEXT("FALSE"), TEXT("Notice"), MB_OK);
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