oaDestroy2DTableRelationshipChangeRec
模块: oapy._oa._cms
导入: from oapy._oa import _cms
概览
oaDestroy2DTableRelationshipChangeRec 在 oapy 中可用,可通过 _cms 模块访问。
本页汇总 oaDestroy2DTableRelationshipChangeRec 当前在 oapy 中可用的 Python 接口。
构造函数
_cms.oaDestroy2DTableRelationshipChangeRec(changeSetIn, valueIn)
obj = _cms.oaDestroy2DTableRelationshipChangeRec(changeSetIn, valueIn)
方法总览
| 状态 | Python 调用 |
|---|---|
| ✅ | obj.getSchemaDefinition() |
| ✅ | obj.getFrom() |
| ✅ | obj.getValue() |
| ✅ | obj.accept(visitor, forward=true) |
方法说明
obj.getSchemaDefinition()
绑定状态: 已绑定
Python 调用: obj.getSchemaDefinition()
This function returns the schema definition for the relationship that is the subject of this oaRelationshipChangeRec 。 从 oaRelationshipChangeRec 重新实现。
Python 示例
from oapy._oa import _cms
# assume obj is a oaDestroy2DTableRelationshipChangeRec
obj.getSchemaDefinition()
obj.getFrom()
绑定状态: 已绑定
Python 调用: obj.getFrom()
This function returns the from object of the relationship associated with this change record。 从 oaRelationshipChangeRec 重新实现。
Python 示例
from oapy._oa import _cms
# assume obj is a oaDestroy2DTableRelationshipChangeRec
obj.getFrom()
obj.getValue()
绑定状态: 已绑定
Python 调用: obj.getValue()
Python 示例
from oapy._oa import _cms
# assume obj is a oaDestroy2DTableRelationshipChangeRec
obj.getValue()
obj.accept(visitor, forward=true)
绑定状态: 已绑定
Python 调用: obj.accept(visitor, forward=true)
This function accepts a change record visitor to allow access to the change record。 It calls the visit function of the specified visitor on this object。 The forward parameter indicates the direction in which the change records are being visited。 The forward parameter might be set to false if the goal of the visit is to roll back changes due to an undo command。 实现 oaChangeRec。
参数
visitor: A pointer to the change record visitor to call on this object。forward: Specifies the direction in which change records are being visited。
Python 示例
from oapy._oa import _cms
# assume obj is a oaDestroy2DTableRelationshipChangeRec
obj.accept(visitor, forward=true)