oaValueArrayValue
模块: oapy._oa._base
导入: from oapy._oa import _base
概览
oaValueArrayValue 在 oapy 中可用,可通过 _base 模块访问。
本页汇总 oaValueArrayValue 当前在 oapy 中可用的 Python 接口。
详细说明
The oaValueArrayValue class represents a value that is an array of oaValue objects。 All values in the array and this value array must be in the same database。 See oaValue for a discussion of the usage of all of the oaValue subclasses。
方法总览
| 状态 | Python 调用 |
|---|---|
| ✅ | obj.get(value) |
| ✅ | obj.set(value) |
| ✅ | _base.oaValueArrayValue.create(database, value) |
方法说明
obj.get(value)
绑定状态: 已绑定
Python 调用: obj.get(value)
This function returns the valueArray for of this value。
参数
value: The returned value。
Python 示例
from oapy._oa import _base
# assume obj is a oaValueArrayValue
obj.get(value)
obj.set(value)
绑定状态: 已绑定
Python 调用: obj.set(value)
This function sets this value to the specified valueArray value。
参数
value: The valueArray value to set。
Python 示例
from oapy._oa import _base
# assume obj is a oaValueArrayValue
obj.set(value)
_base.oaValueArrayValue.create(database, value)
绑定状态: 已绑定
Python 调用: _base.oaValueArrayValue.create(database, value)
This function creates a valueArray value in the database specified。
参数
database: The database in which to create the value。value: The valueArray value。
异常
oacInvalidDatabase。
Python 示例
from oapy._oa import _base
_base.oaValueArrayValue.create(database, value)