oaIntDualIntArrayTblValue
模块: oapy._oa._base
导入: from oapy._oa import _base
概览
oaIntDualIntArrayTblValue 在 oapy 中可用,可通过 _base 模块访问。
本页汇总 oaIntDualIntArrayTblValue 当前在 oapy 中可用的 Python 接口。
详细说明
This class implements oaValue functionality for a 1D lookup table, in which oaInt4 integers represent keys, and arrays of oaInt4 integer pairs represent values。 It is declared in the oaBase module。
方法总览
| 状态 | Python 调用 |
|---|---|
| ✅ | obj.get(tbl) |
| ✅ | obj.set(tbl) |
| ✅ | _base.oaIntDualIntArrayTblValue.create(database, value) |
方法说明
obj.get(tbl)
绑定状态: 已绑定
Python 调用: obj.get(tbl)
This function returns the table of values of this object。
参数
tbl: This object's look up table of integer and dual integer array values。
Python 示例
from oapy._oa import _base
# assume obj is a oaIntDualIntArrayTblValue
obj.get(tbl)
obj.set(tbl)
绑定状态: 已绑定
Python 调用: obj.set(tbl)
This function sets the table of values on this object。
参数
tbl: The look up table of integer and dual integer array values to set on this object。
Python 示例
from oapy._oa import _base
# assume obj is a oaIntDualIntArrayTblValue
obj.set(tbl)
_base.oaIntDualIntArrayTblValue.create(database, value)
绑定状态: 已绑定
Python 调用: _base.oaIntDualIntArrayTblValue.create(database, value)
This function creates an integer oaIntDualIntArrayTbl value in the specified database。
参数
database: The database in which the intDualIntArrayTblValue is created。value: The look up table of integer and dual integer array values to create the object。
Python 示例
from oapy._oa import _base
_base.oaIntDualIntArrayTblValue.create(database, value)