oaFltIntFltTblValue
模块: oapy._oa._base
导入: from oapy._oa import _base
概览
oaFltIntFltTblValue 在 oapy 中可用,可通过 _base 模块访问。
本页汇总 oaFltIntFltTblValue 当前在 oapy 中可用的 Python 接口。
详细说明
The oaFltIntFltTblValue class represents a 2D lookup table value whose first lookup key is a float and second lookup key is an integer and the value is a float。 See oaValue for a discussion of the usage of all of the oaValue subclasses。
方法总览
| 状态 | Python 调用 |
|---|---|
| ✅ | obj.get(tbl) |
| ✅ | obj.set(tbl) |
| ✅ | _base.oaFltIntFltTblValue.create(database, value) |
方法说明
obj.get(tbl)
绑定状态: 已绑定
Python 调用: obj.get(tbl)
This function returns the fltIntFltTbl of this value。
参数
tbl: The fltIntFltTbl of the value to return。
Python 示例
from oapy._oa import _base
# assume obj is a oaFltIntFltTblValue
obj.get(tbl)
obj.set(tbl)
绑定状态: 已绑定
Python 调用: obj.set(tbl)
This function sets the value of this fltIntFltTbl value to the specified fltIntFltTbl value。
参数
tbl: The fltIntFltTbl value to set。
Python 示例
from oapy._oa import _base
# assume obj is a oaFltIntFltTblValue
obj.set(tbl)
_base.oaFltIntFltTblValue.create(database, value)
绑定状态: 已绑定
Python 调用: _base.oaFltIntFltTblValue.create(database, value)
This function creates fltIntFltTbl value in the database specified。
参数
database: The database in which to create the value。value: The fltIntFltTbl value。
异常
oacInvalidDatabase。
Python 示例
from oapy._oa import _base
_base.oaFltIntFltTblValue.create(database, value)