首页 / cms / oaExportMarkerChangeRec

oaExportMarkerChangeRec

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

概览

oaExportMarkerChangeRecoapy 中可用,可通过 _cms 模块访问。

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

详细说明

The oaExportMarkerChangeRec class represents a marker type change record that is exported。 The oaExportMarkerChangeRec object provides a mechanism to store a string with information about the export。

构造函数

_cms.oaExportMarkerChangeRec(changeSetIn, typeIn, dbRef)

obj = _cms.oaExportMarkerChangeRec(changeSetIn, typeIn, dbRef)

方法总览

状态 Python 调用
obj.clone()
obj.accept(visitor, forward=true)
obj.getMessage()
obj.setMessage(msg)

方法说明

obj.clone()

绑定状态: 已绑定

Python 调用: obj.clone()

This function creates an exact copy of the specified oaExportMarkerChangeRec, including an identical timestamp。 实现 oaMarkerChangeRec。

Python 示例

from oapy._oa import _cms

# assume obj is a oaExportMarkerChangeRec
obj.clone()

obj.accept(visitor, forward=true)

绑定状态: 已绑定

Python 调用: obj.accept(visitor, forward=true)

This function accepts a change record visitor to allow access to this 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。 实现 oaMarkerChangeRec。

参数

  • 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 oaExportMarkerChangeRec
obj.accept(visitor, forward=true)

obj.getMessage()

绑定状态: 已绑定

Python 调用: obj.getMessage()

This function returns the string message associated with this oaExportMarkerChangeRec object。 Typically, the string specifies the library, cell, and view names of the target design in a "save as" operation。

Python 示例

from oapy._oa import _cms

# assume obj is a oaExportMarkerChangeRec
obj.getMessage()

obj.setMessage(msg)

绑定状态: 已绑定

Python 调用: obj.setMessage(msg)

This function sets the string message for this oaExportMarkerChangeRec。 Typically, the string specifies the library, cell, and view names of the target design in a "save as" operation。

参数

  • msg: The string message。

Python 示例

from oapy._oa import _cms

# assume obj is a oaExportMarkerChangeRec
obj.setMessage(msg)