Getting the subtitle of a waveform subwindow.

Discussion in 'Cadence' started by Svenn Are Bjerkem, Jun 29, 2005.

  1. 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 Are Bjerkem, Jun 29, 2005
    #1
Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments (here). After that, you can post your question and our members will help you out.