首页 / design / oaConnStatus

oaConnStatus

模块: oapy._oa._design 导入: from oapy._oa import _design

概览

oaConnStatusoapy 中可用,可通过 _design 模块访问。

本页汇总 oaConnStatus 当前在 oapy 中可用的 Python 接口。

详细说明

The oaConnStatus class is an enum wrapper for the values that describe whether a net's connectivity may be changed by operations like optimization and buffer insertion。 See oaNet::getConnStatus for its usage。 OpenAccess does not enforce these settings。 Tools that modify the connectivity must enforce them。 See Enum Wrappers in the Programmers Guide for a discussion of enum wrappers。 enum oaConnStatusEnum Enumeration values: oacNormalConnStatus "normal" There are no restrictions on changing the connectivity of this net oacFixedConnStatus "fixed" This net should not be changed by automatic tools, but may be changed by explicit request from the designer oacLockedConnStatus "locked" This net's connectivity should not be changed by any tool。

构造函数

_design.oaConnStatus(valueIn)

obj = _design.oaConnStatus(valueIn)

_design.oaConnStatus(name)

obj = _design.oaConnStatus(name)

方法总览

状态 Python 调用
obj.getName()

方法说明

obj.getName()

绑定状态: 已绑定

Python 调用: obj.getName()

This function returns the name string associated with the encapsulated oaConnStatusEnum object。

Python 示例

from oapy._oa import _design

# assume obj is a oaConnStatus
obj.getName()