Autodesk.AutoCAD.GraphicsInterface Namespace > ShadowFlags Enumeration
Autodesk.AutoCAD.GraphicsInterface.ShadowFlags Enumeration
Description

 

This .NET class wraps the ShadowFlags ObjectARX class. This is an enumeration of valid bitmasks for the current shadow display property for the drawing, as set by the Database.Cshadow property.

Visual Basic
Public Enum ShadowFlags
  ShadowsCastAndReceive
  ShadowsDoesNotCast
  ShadowsDoesNotReceive
  ShadowsIgnore
End Enum
C#
public enum ShadowFlags {
  ShadowsCastAndReceive,
  ShadowsDoesNotCast,
  ShadowsDoesNotReceive,
  ShadowsIgnore
}
Members
Members 
Description 
ShadowsCastAndReceive 
Indicates that new entities cast and receive shadows by default. 
ShadowsDoesNotCast 
Indicates that new entities do not cast shadows by default. 
ShadowsDoesNotReceive 
Indicates that new entities do not receive shadows by default. 
ShadowsIgnore 
Indicates that new entities do not cast or receive shadows by default. 
   Comments?