Getting the subtitle of a waveform subwindow.

S

Svenn Are Bjerkem

Guest
Hi lads,

I have a nice little snippet that iterates over my open waveform windows
and prints them to a file with the title and a running counter as file name.

(setq cnt 1)
(foreach wid (awvGetWindowList)
awvSetCurrentWindow( wid )
hardCopyOptions(
?hcNumCopy 1
?hcOrientation 'landscape
?hcOutputFile (sprintf nil "%s_%d.eps"
wid->awvSaveWaveInfoDpl->title->label cnt)
?hcPaperSize "DIN A4"
?hcPlotterName "EPS 300"
)
hardCopy()
cnt++
)

Now I would like to ask if anybody know how to extract the subtitle of a
waveform window, as I seldom change the main Title but often change the
subtitle that would be a better way to make unique file names. I was
playing around with the window()->?? function on my plots but didn't get
further than the title->label.

Any helpers?

--
Svenn
 

Welcome to EDABoard.com

Sponsor

Back
Top