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

 

This .NET enum wraps the AcGiRegenType ObjectARX enum. It describes the types of elaboration that can occur on regeneration.

Visual Basic
Public Enum RegenType
  ForExplode = 5
  HideOrShadeCommand = 3
  Invalid = 0
  RenderCommand = 4
  SaveWorldDrawForProxy = 6
  ShadedDisplay = 4
  StandardDisplay = 2
End Enum
C#
public enum RegenType {
  ForExplode = 5,
  HideOrShadeCommand = 3,
  Invalid = 0,
  RenderCommand = 4,
  SaveWorldDrawForProxy = 6,
  ShadedDisplay = 4,
  StandardDisplay = 2
}
Members
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?