Close

Relief for ODA Team in Ukraine

Learn more
ODA Drawings SDK
OdDbObject::recvPropagateModify Method
Syntax
C++
virtual void recvPropagateModify(const OdDbObject* pSubObj);

Allows a subobject of a complex object to notify its root object that it has been changed. 

 

Parameters
Description
pSubObj
[in] Pointer to the modifiedsubobject.

Here's how it's supposed to work: 

1) The subobject class's close() calls its triggers a "modified" notification which calls its xmitPropagateModify(). 2) The subobject class calls the its parent's recvPropagateModify() its object's pointer. 3) The owner's class's recvPropagateModify() sends a "modified" notification to the top of its class. 

The default implementation of this function does nothing. This function can be overridden in custom classes.

Copyright © 2002-2022. Open Design Alliance All rights reserved.