Share

AcGiEdgeStyleMaskValues

C++

enum AcGiEdgeStyleMaskValues {
  kAcGiNoEdgeStyleMask = 0,
  kAcGiJitterMask = 1,
  kAcGiOverhangMask = 2,
  kAcGiEdgeColorMask = 4
};

File

acgidefs.h

Members

Members Description
kAcGiNoEdgeStyleMask The default value for AcGiSubEntityTraits. Indicates that no part of a visual style's edge style should be overridden. Since this is the default, it is an error to call setEdgeStyleOverride() with this value.
kAcGiJitterMask Indicates that the fileds of AcGiEdgeStyle related to jittered edges should be overridden.
kAcGiOverhangMask Indicates that the fields of AcGiEdgeStyle related to overhung edges should be overridden.
kAcGiEdgeColorMask Indicates that the fields of AcGiEdgeStyle related to edge colors should be overridden.

Description

This is an enumeration of valid bitmasks for AcGiEdgeStyle overrides, as set by AcGiSubEntityTraits@1::setEdgeStyleOverride(),

Was this information helpful?