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

 

This .NET enum wraps the AcGiFillType ObjectARX enum. 

 

Primitives that can be filled are circles, polygons, shells, meshes, text, arc sectors, and arc chords. Polylines and simple arcs cannot be filled.

Visual Basic
Public Enum FillType
  FillAlways = 1
  FillNever = 2
End Enum
C#
public enum FillType {
  FillAlways = 1,
  FillNever = 2
}
Members
Members 
Description 
FillAlways = 1 
Before AutoCAD calls WorldDraw(), it sets the fill type depending on the regen type. If the regen type is anything other than StandardDisplay, AutoCAD sets the fill type to FillAlways
FillNever = 2 
Before AutoCAD calls WorldDraw(), it sets the fill type depending on the regen type. If the regen type is StandardDisplay, AutoCAD sets the fill type to FillNever. 
   Comments?