LDicomDS::IsVolatileElement

#include "Ltdic.h"

L_BOOL LDicomDS::IsVolatileElement(pElement)

pDICOMELEMENT pElement;

/* pointer to a DICOMELEMENT structure */

Determines whether the specified element is volatile.

Parameter

Description

pElement

Pointer to a DICOMELEMENT structure.

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:

Working with Data Sets

Example

This example checks if an element is volatile.

L_INT LDicomDS_IsVolatileElementExample()
{
   LDicomDS *     pDS;
   pDICOMELEMENT  pElement;
   pDS = new LDicomDS(NULL);
   pDS->InitDS(CLASS_XA_BIPLANE_IMAGE_STORAGE_RETIRED, DS_LITTLE_ENDIAN | DS_EXPLICIT_VR);
   pElement = pDS->GetFirstElement(NULL, FALSE, TRUE);
   if (pDS->IsVolatileElement(pElement))
   {
      MessageBox(NULL, TEXT("Volatile"), TEXT("Notice"), MB_OK);
   }
   delete pDS;
   return DICOM_SUCCESS;
}