This .NET enum wraps the AcGiRegenType ObjectARX enum. It describes the types of elaboration that can occur on regeneration.
Public Enum RegenType ForExplode = 5 HideOrShadeCommand = 3 Invalid = 0 RenderCommand = 4 SaveWorldDrawForProxy = 6 ShadedDisplay = 4 StandardDisplay = 2 End Enum
public enum RegenType { ForExplode = 5, HideOrShadeCommand = 3, Invalid = 0, RenderCommand = 4, SaveWorldDrawForProxy = 6, ShadedDisplay = 4, StandardDisplay = 2 }
Members |
Description |
ForExplode = 5 |
Explodes an object. |
HideOrShadeCommand = 3 |
Performs hidden line removal and indicates that the HIDE or SHADE command is in effect. Entities should be rendered using faces in this mode. |
Invalid = 0 |
Invalid regeneration. |
RenderCommand = 4 |
Entities should be rendered using faces in this mode. |
SaveWorldDrawForProxy = 6 |
Generates proxy graphics. Rendering should be done in worldDraw(). |
StandardDisplay = 2 |
Entities should be rendered in wireframe in this mode. |
Comments? |