Share

GripStat

C++

enum GripStat {
  kGripsDone = 0,
  kGripsToBeDeleted = 1,
  kDimDataToBeDeleted = 2
};

File

acdb.h

Members

Members Description
kGripsDone The entity's grips have been deleted in the host application and the entity is no longer involved in any grip edit operations
kGripsToBeDeleted The entity's grips are about to be deleted in the host application
kDimDataToBeDeleted The application should delete any application data associated with the AcDbDimData object being deleted by AutoCAD

Description

This enumeration provides status values concerning a grip operation.

Was this information helpful?