#include "Ltdic.h"
L_LTDIC_API L_BOOL L_DicomSetDescriptionIOD(pIOD, pszDescription)
Sets the description of the specified item in the IOD Structure.
Pointer to a structure that contains an item in the IOD Structure. The description of this item will be set using the string contained in pszDescription.
Character string that contains the description to be set.
Value | Meaning |
---|---|
TRUE | The description was successfully set. |
FALSE | Not enough memory. |
The following functions will also help you navigate the IOD Structure:
Required DLLs and Libraries
Win32, x64, Linux.
This example changes the module’s description
L_INT DicomSetDescriptionIODExample(L_VOID)
{
pDICOMIOD pIOD;
pIOD = L_DicomFindModuleIOD(CLASS_US_IMAGE_STORAGE, MODULE_PATIENT_STUDY);
if (pIOD != NULL)
{
if (!L_DicomSetDescriptionIOD(pIOD, TEXT("New Description")))
return DICOM_ERROR_MEMORY;
}
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