Share

Autodesk.AutoCAD.GraphicsInterface.DrawFlags Enumeration

Description

This .NET class wraps the AcGiSubEntityTraits::DrawFlags ObjectARX class. This is an enumeration of valid bitmasks for calls to the setDrawFlags() method.

C#

public enum DrawFlags {
  DrawBackfaces = 1,
  DrawFillTextBoundaryEnd = 0x200,
  DrawFillTextBoundaryStart = 0x100,
  DrawNoLineWeight = 0x20,
  None = 0
}

Visual Basic

Public Enum DrawFlags
  DrawBackfaces = 1
  DrawFillTextBoundaryEnd = &H200
  DrawFillTextBoundaryStart = &H100
  DrawNoLineWeight = &H20
  None = 0
End Enum

Members

Members Description
DrawBackfaces = 1 Indicates that shells or meshes that are part of the entity or subentity should always draw back-facing triangles. This is useful for 3D surfaces or solids that are no completely closed. Using this falg on closed solids is inefficient, but will still result in correct visual output.
DrawNoLineWeight = 0x20 Draw with no line weight. Its enum value is 32.
None = 0 The default value for draw flags. This indicates no draw flags are active.

Was this information helpful?