LDicomVR::Delete

#include "Ltdic.h"

static pDICOMVR LDicomVR::Delete(pVR)

pDICOMVR pVR;

pointer to a DICOMVR structure

Deletes the specified item from the Value Representation Table.

Parameter

Description

pVR

Pointer to a DICOMVR structure that contains the item to be deleted.

Returns

!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.

Comments

You can remove all items from the table using LDicomVR::Reset.

Required DLLs and Libraries

LTDIC

For a listing of the exact DLLs and Libraries needed, based on the toolkit version, refer to Files To Be Included With Your Application

Platforms

Win32, x64

See Also

Functions:

LDicomVR::Reset, LDicomVR::GetFirst, LDicomVR::GetLast, LDicomVR::GetPrev, LDicomVR::GetNext, LDicomVR::Find, LDicomVR::FindIndex, LDicomVR::Insert

Topics:

Working with Value Representations

Example

This example removes an item from the VR table.

L_INT LDicomVR_DeleteExample() 
{ 
   pDICOMVR pVR; 
   pVR = LDicomVR::Find(VR_AE); 
   if (pVR != NULL) 
   { 
      LDicomVR::Delete(pVR); 
   } 
   return DICOM_SUCCESS; 
} 

Help Version 19.0.2017.10.27
Products | Support | Contact Us | Copyright Notices
© 1991-2017 LEAD Technologies, Inc. All Rights Reserved.
LEADTOOLS DICOM C++ Class Library Help