Share

AcDbObject::modifiedGraphics

C++

virtual ACDBCORE2D_PORT void modifiedGraphics(
    const AcDbEntity* dbEnt
);

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.

ModifiedGraphics notification is only sent when the sending object is derived from AcDbEntity.

This particular function is called whenever the following sequence has occurred:

  1. The entity sending notification is opened for write
  1. One of its member functions is called, which:
  1. It is now in the process of being closed.

When this function is called, pDbEnt points to the entity sending the notification. The sending entity is open in a read-only state.

Parameters

Parameters Description
dbEnt Input pointer to the entity that has just been modified

Links

AcDbObject

Was this information helpful?