Autodesk.AutoCAD.DatabaseServices Namespace > Entity Class > Entity Methods > SetSubentityGripStatus Method
Entity.SetSubentityGripStatus Method   
Description

 

This function is called with a status value of GripsToBeDeleted 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 GripStatus objects and any alternate base point objects pointed to by the GripStatus 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 GripsDone 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.

Visual Basic
Public Function SetSubentityGripStatus(
    status As GripStatus, 
    subentity As FullSubentityPath
) As void
C#
public void SetSubentityGripStatus(
    GripStatus status, 
    FullSubentityPath subentity
);
Parameters
Parameters 
Description 
GripStatus status 
Input the status of the grip operation 
FullSubentityPath subentity 
Input the subentity on the object whose grip status changed 
Links
   Comments?