Share

ReturnValue

C++

enum ReturnValue {
  eOk = 0,
  eFailure,
  eNoRedrawGrip,
  eGripHotToWarm,
  eGetNewGripPoints
};

File

dbgripoperations.h

Members

Members Description
eOk Indicates no errors and no post-process operations
eFailure Indicates an error has occurred and the grip operation has failed
eNoRedrawGrip Directs the host application not to have the grip redraw itself
eGripHotToWarm Directs the host application to change the grip from hot to warm
eGetNewGripPoints Indicates that all the grip points for the entity should be removed and the entity's getGripPoints() function should be called to get and display a new set of grips for the entity

Description

This enumeration provides values that are returned by the AcDbGripData object's callbacks.

Was this information helpful?