| 
 | Available in LEADTOOLS Medical Imaging toolkits. | 
L_DicomSetNameTag
#include "Ltdic.h"
L_LTDIC_API L_BOOL L_DicomSetNameTag(pTag, pszName)
| pDICOMTAG pTag; | /* pointer to a DICOMTAG structure */ | 
| L_TCHAR * pszName; | /* character string */ | 
Sets the name of the specified item in the Data Element Tag Table.
| Parameter | Description | 
| pTag | Pointer to a structure that contains an item in the Data Element Tag Table. The name of this item will be set using the string contained in pszName. | 
| pszName | Character string that contains the name to be set. | 
Returns
| TRUE | The name was successfully set. | 
| FALSE | Not enough memory. | 
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 | 
See Also
| Functions: | L_DicomGetFirstTag, L_DicomGetLastTag, L_DicomGetPrevTag, L_DicomGetNextTag, L_DicomFindTag, L_DicomFindIndexTag | 
| Topics: | 
Example
This example changes the name of an item in the Tag table
L_INT DicomSetNameTagExample(L_VOID)
{
   pDICOMTAG pTag;
   pTag = L_DicomFindTag(TAG_MEDIA_STORAGE_SOP_CLASS_UID);
   if (pTag != NULL)
   {
      if (!L_DicomSetNameTag(pTag, TEXT("New name")))
         return DICOM_ERROR_MEMORY;
   }
   return DICOM_SUCCESS;
}