oaheader.gif
topics.gif classes.gif classes.gif exceptions.gif progguide.gif infomodel.gif index.gif help.gif
 
 
 

Technology

 [TECHNOLOGY technologyName ;]

The TECHNOLOGY statement specifies a technology for the design database and is stored in OpenAccess as a property on the oaDesign.

technologyName

The technologyName value corresponds to the value of a string property named DEF_TECHNOLOGY on the design. Use the following function to search for the property:

   oaProp *oaProp::find(oaObject *object,
                        const oaString &name,
                        oaBoolean crossDomain = false)

where:

   * the design object is the first parameter
   * DEF_TECHNOLOGY string is the second parameter
   * crossDomain determinese whether multiple domains are searched and whether properties are inherited from other domains.

The value of the property is obtained by using:

   void oaProp::getValue(oaString &value) const