Share

AcHatchNotifier Enumeration

C++

enum AcHatchNotifier {
  kNobody = 0x00,
  kImpHatch = 0x01,
  kBoundary = 0x02,
  kHatchAndBoundary = (kImpHatch | kBoundary),
  kAddScale = 0x04
};

File

aced-hatch.h

Members

Members Description
kNobody Don't mark any as modified.
kImpHatch Mark the hatch as modified
kBoundary Mark the boundary as modified
kHatchAndBoundary Mark the hatch and boundary as modified
kAddScale

Description

These enum values are used with acedManageHatchEditorReactor to specify which objects should be marked as modified.

Was this information helpful?