I have many DOORS documents that I wish to be able to generate a list of all of the incoming and outgoing links. I have searched the DXL help section, and use the following: |
Re: How do I display all of the links in a DOORS document?
Hi,
string srcModName
Object o
for o in current Module do
{
for srcModName in o<-"*" do
print srcModName "\n"
}
|