Share

GetGripPointsFlags

C++

enum GetGripPointsFlags {
  kGripPointsOnly = 0x1,
  kCyclableGripsOnly = 0x02,
  kDynamicDimMode = 0x04,
  kNoMultiModesGrip = 0x08
};

File

dbgripoperations.h

Members

Members Description
kGripPointsOnly Only the grip points are used in operations involving this grip. No custom glyphs or callbacks are used.
kDynamicDimMode This bit flag indicates AutoCAD dynamic dimension mode is on. The dynamic dimension mode is controlled by the DYNMODE system variable.

Description

This enumeration specifies whether only the grip points are used. It is used by the bitflags argument to AcDbEntity::getGripPoints().

Changed Declaration

New:

kNoMultiModesGrip = 0x08

Was this information helpful?