DOORS DXL Scripting Examples – Print the full name of all “Formal” modules

/*
DOORS DXL – Print the full name of all “Formal” modules found in the current folder
*/

Folder currFolder = current Folder
Item   itemRef

for itemRef in currFolder do 
{
    if (type(itemRef) == "Formal") 
    {
        print fullName(itemRef) "\n"
    }
}

DOORS DXL Scripting Examples – Print the full name of all “Formal” modules
Scroll to top
error: Content is protected !!