techGetInstDeviceClass
techGetInstDeviceClass(d_instID) =>t_deviceClassName/ nil
Description
Returns the device class of the specified instance in the current technology database. ASCII technology file location: devices section.
For more information about the devices section, see
Arguments
Value Returned
Examples
dbCreateInstByMasterName(cvID "cellTechLib" "MOS1" "layout" "inst2" list(0 0) "R0" 1)
Creates the instance inst2 from the master MOS1.
instID=dbFindAnyInstByName(cvID "inst2")
=> db:41956120
Assigns the instance database identifier to the variable instID.
techGetInstDeviceClass(instID)
=> "guardring"
Returns the device class, guardring, of the instance inst2.
Return to top