Share

GripStatus

C++

enum GripStatus {
  kGripStart = 0,
  kGripEnd,
  kGripAbort,
  kStretch,
  kMove,
  kRotate,
  kScale,
  kMirror,
  kDimFocusChanged,
  kPopUpMenu
};

File

dbgripoperations.h

Members

Members Description
kGripStart A grip operation has just started
kGripEnd A grip operation has just ended
kGripAbort A grip operation has just been aborted
kStretch The grip operation is now Stretch
kMove The grip operation is now Move
kRotate The grip operation is now Rotate
kScale The grip operation is now Scale
kMirror The grip operation is now Mirror
kDimFocusChanged kDimFocusChanged indicates that the focus of the grip operation has changed. This can occur the user presses the TAB key to switch focus to a different dimension entity while the dynamic dimension edit dialog is active.
kPopUpMenu Indicates that the popup menu determined by the AcDbGripData::setRtClk() function is about to be invoked; this can happen without right clicking when a grip is simply made hot

Description

This enumeration provides values that describe the status of a grip operation.

Was this information helpful?