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.
Public Enum FillType FillAlways = 1 FillNever = 2 End Enum
public enum FillType { FillAlways = 1, FillNever = 2 }
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? |