Share

AcDbDatabaseReactor::objectErased

C++

virtual void objectErased(
    const AcDbDatabase*, 
    const AcDbObject*, 
    bool
);

Description

This function is invoked when an AcDbObject object is being erased or unerased from an AcDbDatabase. The pErased argument is a Boolean, indicating whether the object has been erased or unerased. The invocation of this function takes place after the operation has completed. A value of True indicates that the object is being erased. A value of False indicates that the object is being unerased.

Parameters

Parameters Description
dwg Pointer to the AcDbDatabase object being affected by the Erase operation
dbObj Pointer to the object being erased
pErased Boolean flag indicating if the dbObj object is being erased or unerased

Links

AcDbDatabaseReactor

Previous Declaration

virtual void objectErased(

const AcDbDatabase* dwg,

const AcDbObject* dbObj,

Adesk::Boolean bErased

);

Was this information helpful?