DOORS DXL Scripting Examples – Print Module

/*
DOORS DXL –

Manually open a DOORS module
Write and test a script to do the following:

For each object in the display set, print the Object Identifier and Object Text
*/

Object o
string myHeading, myTxt
for o in current Module do {
    print identifier(o) "\t" 
    hdg = o."Object Heading"
    
    if(!null(myHeading)) {
        print number(o) "  " myHeading "\n"
    }
    
    myTxt= o."Object Text"
    if(myTxt!= "" ) {
        print myTxt"\n"
    }
}

DOORS DXL Scripting Examples – Print Module
Scroll to top
error: Content is protected !!