首页 / design / oaPlacementStatus

oaPlacementStatus

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

概览

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

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

详细说明

oaPlacementStatus 类封装用于描述the different placement status you can assign to an instance or a pin的枚举值。 See Enum Wrappers in the Programmers Guide for a discussion of enum wrappers。 enum oaPlacementStatusEnum Enumeration values: oacNonePlacementStatus "none" The placement status has not been set, but the current placement location is to be treated as valid oacUnplacedPlacementStatus "unplaced" The current placement is arbitrary and should be changed。 Unplaced objects do not contribute to the bounding box of the containing design, and they will not be returned by region query。 oacPlacedPlacementStatus "placed" An effort has been made to place this object but it may be placed again by future attempts oacFixedPlacementStatus "fixed" The placement of this object should not be changed by an automatic placement tool oacLockedPlacementStatus "locked" The placement of this object should not be changed。

构造函数

_design.oaPlacementStatus(valueIn)

obj = _design.oaPlacementStatus(valueIn)

_design.oaPlacementStatus(name)

obj = _design.oaPlacementStatus(name)

方法总览

状态 Python 调用
obj.getName()

方法说明

obj.getName()

绑定状态: 已绑定

Python 调用: obj.getName()

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

Python 示例

from oapy._oa import _design

# assume obj is a oaPlacementStatus
obj.getName()