DOORS DXL Scripting Examples – Create Object in Module

/* DOORS DXL – Create object in a Module

*/

You can create an object in a DOORS Module in several ways –

Module curM = current Module
Object o = null

o = create(curM)
o."Object Heading" = identifier(o)

o = create( below(o) )
o."Object Heading" = identifier(o)

o = create( after(o) )
o."Object Heading" = identifier(o)
DOORS DXL Scripting Examples – Create Object in Module
Scroll to top
error: Content is protected !!