Autodesk.AutoCAD.GraphicsSystem Namespace > Quality Enumeration
Autodesk.AutoCAD.GraphicsSystem.Quality Enumeration
Description

 

This .NET class wraps the AcGsConfig::Quality ObjectARX class. 

It contains values for adjusting the transparency in order to improve image quality. The choice of transparency type affects the redraw time. Materials must be enabled for transparency to be turned on.

Visual Basic
Public Enum Quality
  LowQuality
  MediumQuality
  HighQuality
End Enum
C#
public enum Quality {
  LowQuality,
  MediumQuality,
  HighQuality
}
Members
Members 
Description 
LowQuality 
This setting maximizes display performance at the expense of display quality. At the Low Quality setting, a screen-door effect achieves transparency without sacrificing speed. 
MediumQuality 
This setting balances display performance and display quality. At the Medium Quality setting, blending improves image quality. 
HighQuality 
This setting maximizes display quality at the expense of display performance. At the High Quality setting, blending and extra processing produce an image free of visual artifacts at the cost of drawing speed. 
   Comments?