#include "Ltdic.h"
L_LTDIC_API pDICOMVR L_DicomDeleteVR(pVR)
Deletes the specified item from the Value Representation Table.
Pointer to a DICOMVR structure that contains the item to be deleted.
Value | Meaning |
---|---|
!NULL | A pointer to an adjacent item. If there is an item following the item being deleted, the returned pointer will point to this item. If the item being deleted does not have an item following it, but has an item preceding it, the pointer points to the item immediately preceding the deleted item. |
NULL | The table is empty. |
You can remove all items from the table using L_DicomResetVR.
Required DLLs and Libraries
Win32, x64, Linux.
This example removes an item from the VR table
L_INT DicomDeleteVRExample(L_VOID)
{
pDICOMVR pVR;
pVR = L_DicomFindVR(VR_AE);
if (pVR != NULL)
L_DicomDeleteVR(pVR);
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