首页 / base / oaIntRangeArray1DTblValue

oaIntRangeArray1DTblValue

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

概览

oaIntRangeArray1DTblValueoapy 中可用,可通过 _base 模块访问。

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

详细说明

The oaIntRangeArray1DTblValue class represents a 1D lookup table value where the key is an integer and the value is an intRangeArray。 See oaValue for a discussion of the usage of all of the oaValue subclasses。

方法总览

状态 Python 调用
obj.get(value)
obj.set(value)
_base.oaIntRangeArray1DTblValue.create(database, value)

方法说明

obj.get(value)

绑定状态: 已绑定

Python 调用: obj.get(value)

This function returns the oaIntRangeArray value of this object。

参数

  • value: The returned oaIntRangeArray value。

Python 示例

from oapy._oa import _base

# assume obj is a oaIntRangeArray1DTblValue
obj.get(value)

obj.set(value)

绑定状态: 已绑定

Python 调用: obj.set(value)

This function sets the oaIntRangeArray value of this object to the specified oaIntRangeArrayTbl value。

参数

  • value: The oaIntRangeArray value to set。

Python 示例

from oapy._oa import _base

# assume obj is a oaIntRangeArray1DTblValue
obj.set(value)

_base.oaIntRangeArray1DTblValue.create(database, value)

绑定状态: 已绑定

Python 调用: _base.oaIntRangeArray1DTblValue.create(database, value)

This function creates an oaIntRangeArray1DTblValue in the specified database。

参数

  • database: Pointer to the database in which to create the value。
  • value: The oaIntRangeArray value。

异常

  • oacInvalidDatabase

Python 示例

from oapy._oa import _base

_base.oaIntRangeArray1DTblValue.create(database, value)