C++
virtual ACDBCORE2D_PORT void objectClosed( const AcDbObjectId objId );
Description
This is one of the persistent reactor notification functions that can be overridden in a custom class derived from AcDbObject. The default implementation for this function is a return, so unless it is overridden it does nothing.
This particular function is called whenever the object sending notification was closed. Reopening the object for write is not supported since it leads to recursive notifications. Doing so will return Acad::eWasNotifying during the open operation.
Parameters
Parameters | Description |
---|---|
objId | Passed in objectId of the object sending the notification |