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.
Public Enum ShadowFlags ShadowsCastAndReceive ShadowsDoesNotCast ShadowsDoesNotReceive ShadowsIgnore End Enum
public enum ShadowFlags { ShadowsCastAndReceive, ShadowsDoesNotCast, ShadowsDoesNotReceive, ShadowsIgnore }
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? |