Returns a string array containing thenames of the tags in a structure expression.
a = {struc1, t1: 0.0D, t2: {struct2, $ t2_t1: INTARR(3), t2_t2: 0.0, t2_t3: 0L},$ t3: FLTARR(12), t4: 0L}
PRINT, TAG_NAMES(a)
T1 T2 T3 T4
PRINT, TAG_NAMES(a.t2)
T2_T1 T2_T2 T2_T3