Share

ShadowFlags

C++

enum ShadowFlags {
  kShadowsCastAndReceive = 0x00,
  kShadowsDoesNotReceive = 0x01,
  kShadowsDoesNotCast = 0x02,
  kShadowsIgnore = kShadowsDoesNotCast|kShadowsDoesNotReceive
};

File

acdb.h

Members

Members Description
kShadowsCastAndReceive Indicates that new entities cast and receive shadows by default
kShadowsDoesNotReceive Indicates that new entities do not receive shadows by default
kShadowsDoesNotCast Indicates that new entities do not cast shadows by default
kShadowsIgnore Indicates that new entities do not cast or receive shadows by default

Description

This is an enumeration of valid bitmasks for the current shadow display property for the drawing, as set by the AcDbDatabase::setCshadow() method.

Was this information helpful?