L_DicomIsVolatileElement
#include "Ltdic.h"
L_LTDIC_API L_BOOL L_DicomIsVolatileElement(hDS, pElement)
HDICOMDS hDS; |
/* a DICOM handle */ |
pDICOMELEMENT pElement; |
/* pointer to a DICOMELEMENT structure */ |
Determines whether the specified element is volatile.
Parameter |
Description |
hDS |
A DICOM handle. |
pElement |
Pointer to a DICOMELEMENT structure that contains the item to be deleted. |
Returns
TRUE |
The element is volatile. |
FALSE |
The element is not volatile. |
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
Topics: |
Example
/* This example checks if an element is volatile */ L_INT DicomIsVolatileElementExample(L_VOID) { HDICOMDS hDS; pDICOMELEMENT pElement; hDS = L_DicomCreateDS(NULL); L_DicomInitDS(hDS, CLASS_XA_BIPLANE_IMAGE_STORAGE_RETIRED, DS_LITTLE_ENDIAN | DS_EXPLICIT_VR); pElement = L_DicomGetFirstElement(hDS, NULL, FALSE, TRUE); if (L_DicomIsVolatileElement(hDS, pElement)) MessageBox(NULL, TEXT("Volatile"), TEXT("Notice"), MB_OK); L_DicomFreeDS(hDS); return DICOM_SUCCESS; }