Is this page helpful?

In this page

L_DicomExistsElement

Summary

Determines whether the pointer to the structure is valid.

Syntax

#include "Ltdic.h"

L_LTDIC_API L_BOOL L_DicomExistsElement(hDS, pElement)

Parameters

HDICOMDS hDS

A DICOM handle.

pDICOMELEMENT pElement

Pointer to a DICOMELEMENT structure.

Returns

Value Meaning
TRUE pElement is a valid pointer.
FALSE pElement is NULL.

Required DLLs and Libraries

Platforms

Win32, x64, Linux.

See Also

Functions

Topics

Example

This example checks if the pointer of an element

Copied to clipboard
L_INT DicomExistsElementExample(L_VOID) 
{ 
   HDICOMDS      hDS; 
   pDICOMELEMENT pElement; 
 
   hDS = L_DicomCreateDS(MAKE_IMAGE_PATH(TEXT(""))); 
   L_DicomInitDS(hDS, CLASS_CT_IMAGE_STORAGE, 0); 
 
   pElement = L_DicomInsertElement(hDS, NULL, FALSE, TAG_INSTITUTION_CODE_SEQUENCE,  
                                   VR_SQ, TRUE, ELEMENT_INDEX_MAX); 
   if (pElement == NULL) 
   { 
      L_DicomFreeDS(hDS); 
      return DICOM_ERROR_MEMORY; 
   } 
 
   if (L_DicomExistsElement(hDS, pElement) == FALSE) 
      MessageBox(NULL, TEXT("The element does not exist in Data Set"), TEXT("Notice"), MB_OK); 
 
   L_DicomFreeDS(hDS); 
   return DICOM_SUCCESS; 
} 

Help Version 23.0.2024.7.1
Products | Support | Contact Us | Intellectual Property Notices
© 1991-2025 Apryse Sofware Corp. All Rights Reserved.

LEADTOOLS DICOM C API Help
Products | Support | Contact Us | Intellectual Property Notices
© 1991-2025 Apryse Sofware Corp. All Rights Reserved.