oaTechObject
模块: oapy._oa._tech
导入: from oapy._oa import _tech
概览
oaTechObject 在 oapy 中可用,可通过 _tech 模块访问。
本页汇总 oaTechObject 当前在 oapy 中可用的 Python 接口。
详细说明
The oaTechObject class is an abstract base class for all OpenAccess technology database objects。 All objects specific to the technology database are oaTechObjects。
方法总览
| 状态 | Python 调用 |
|---|---|
| ✅ | obj.getTech() |
| ✅ | obj.isLayer() |
| ✅ | obj.isSiteDef() |
| ✅ | obj.isViaDef() |
方法说明
obj.getTech()
绑定状态: 已绑定
Python 调用: obj.getTech()
This function returns the technology database associated with this object。
Python 示例
from oapy._oa import _tech
# assume obj is a oaTechObject
obj.getTech()
obj.isLayer()
绑定状态: 已绑定
Python 调用: obj.isLayer()
This function returns a boolean value that indicates if this object is a layer object。
Python 示例
from oapy._oa import _tech
# assume obj is a oaTechObject
obj.isLayer()
obj.isSiteDef()
绑定状态: 已绑定
Python 调用: obj.isSiteDef()
This function returns a boolean value that indicates if this object is a siteDef object。
Python 示例
from oapy._oa import _tech
# assume obj is a oaTechObject
obj.isSiteDef()
obj.isViaDef()
绑定状态: 已绑定
Python 调用: obj.isViaDef()
This function returns a boolean value that indicates if this object is a viaDef object。
Python 示例
from oapy._oa import _tech
# assume obj is a oaTechObject
obj.isViaDef()