home *** CD-ROM | disk | FTP | other *** search
- Path: sparky!uunet!idtinc!cwp
- From: cwp@idtinc.UUCP (Chuck Phillips)
- Newsgroups: comp.cad.cadence
- Subject: Re: how to add to selected set in Edge
- Message-ID: <488@idtinc.UUCP>
- Date: 31 Jul 92 15:59:47 GMT
- References: <lyndon.712435355@angelo>
- Organization: Integrated Device Technology, Santa Clara
- Lines: 49
-
- In article <lyndon.712435355@angelo> lyndon@angelo.amd.com (Lyndon C. Lim) writes:
- >if i have the dbobject, how do i add it to the
- >selected set on screen?
- >
- >for example,
- >
- > insts = selectedSet()
- > subAll()
- >
- > foreach(i insts
- > if( <some criteria> then
- > <select i, ie. i is highlighted on screen>
- > )
- > )
- >
-
- In Edge, if you want to see anything on the screen that is done in a
- skill program you need to use refresh() after each command. So in your
- case your code would be:
-
- foreach(i insts
- if( <some criteria> then
- add(l_coord_pair)
- refresh()
- )
- )
-
- >also, what is the difference between add() and addDI().
- >i can't really find any documentation in my skill book on
- >these functions which explains their differences.
- >
-
- I used to know but have long since forgotten this one. Call
- 1-800-223-3622 and ask them. This is Cadence's Customer Service Hot Line.
-
- >thanks,
- >lyndon c.
-
- ==============================================================================
- |Chuck Phillips | |
- |Integrated Device Technology, Inc |Just so you know who to |
- |2670 Seeley Ave |contact and that they |
- |San Jose, CA 95134 |exist - not that I speak |
- |(408)944-2052 |for, or on behalf of, |
- |(408)944-2195 (FAX) |any of them. |
- |uunet.uu.net!idtg!cwp | |
- |International Cadence User Group-Layout SIG Chair|I speak alone! |
- |Bay Area Cadence User People, BACUP, Chair | |
- ==============================================================================
-