Share

AcDbEntity::subentGripStatus

C++

virtual ACDBCORE2D_PORT void subentGripStatus(
    const AcDb::GripStat status, 
    const AcDbFullSubentPath& subentity
);

Description

This function is called with a status value of kGripsToBeDeleted when the grips for the subentity are about to be deleted in the host application. This notification allows the entity to perform any required resource management tasks before the grip's AcDbGripData objects and any alternate base point objects pointed to by the AcDbGripData objects are deleted. This notification may be sent more than once for a given grip edit session. If the grip edit session is not over when this notification is sent, the entity will subsequently receive a call to its getGripPoints() function to acquire new grip points to be used by the grip edit session.

This function is called with a status value of kGripsDone when the grips for the entity have been deleted in the host application and the entity is no longer involved in any grip edit operations.

Parameters

Parameters Description
status Input the status of the grip operation.
subentity Input the subentity on the object whose grip status changed.

Links

AcDbEntity

Previous Declaration

ACDBCORE2D_PORT ADESK_SEALED_VIRTUAL void subentGripStatus(const AcDb::GripStat status, const AcDbFullSubentPath& subentity) ADESK_SEALED;

Was this information helpful?