LDicomUID::Delete

#include "Ltdic.h"

static pDICOMUID LDicomUID::Delete(pUID)

Deletes the specified item from the UID Table.

Parameters

pDICOMUID pUID

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

Returns

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.

Comments

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

Required DLLs and Libraries

Platforms

Win32, x64

See Also

Functions

Topics

Example

This example removes an item from the UID table.

L_INT LDicomUID_DeleteExample() 
{ 
   pDICOMUID   pUID; 
 
   pUID = LDicomUID::Find(TEXT("1.2.840.10008.1.1")); 
   if (pUID != NULL) 
   { 
      LDicomUID::Delete(pUID); 
   } 
 
   return DICOM_SUCCESS; 
} 

Help Version 21.0.2021.7.2
Products | Support | Contact Us | Intellectual Property Notices
© 1991-2021 LEAD Technologies, Inc. All Rights Reserved.

LEADTOOLS DICOM C++ Class Library Help

Products | Support | Contact Us | Intellectual Property Notices
© 1991-2021 LEAD Technologies, Inc. All Rights Reserved.