The IDLffDICOM::DumpElements procedure method dumps a description of the DICOM data elements of the IDLffDICOM object to the screen or to a file.
            Syntax
            Obj->[IDLffDICOM::]DumpElements [, Filename]
            Arguments
            Filename
            A scalar string containing the full path and filename of the file to which to dump the elements. The file is written as ASCII text.
            Keywords
            None
            Examples
            The columns output by DumpElements are the element reference, the (group, element) tuple, the value representation, the description, the value length, and some of the data values.
            
            obj = OBJ_NEW( 'IDLffDICOM' )
            var = obj->Read(DIALOG_PICKFILE(FILTER='*'))
            obj->DumpElements
             
            
            
            obj->DumpElements, 'c:\myData\elements.dmp'
             
            
            
            obj->DumpElements, '/myData/elements.dmp'
             
            OBJ_DESTROY, obj
            Version History