Calling Sequence
CDF_DOC,
Id, Version, Release, Copyright
Arguments
Id
A CDF ID, returned from a previous call to CDF_OPEN or CDF_CREATE.
Version
A named variable in which the version number of the CDF library that created the CDF is returned.
Release
A named variable in which the release number of the CDF library that created the CDF is returned.
Copyright
A named variable in which the copyright notice of the CDF library that created the CDF is returned.
Example
id=CDF_CREATE('VersionCheck')
CDF_DOC, id, vers, rel, copy, INCREMENT=incr
PRINT,'File Written Using CDF', vers, rel, incr, $
FORMAT='(A,I1,".",I1,"r",I2)'
IDL prints:
File Written Using CDF2.6
CDF_CLOSE, id