This documentation is archived and is not being maintained.
SmoothingMode Enumeration
.NET Framework 1.1
Specifies whether smoothing (antialiasing) is applied to lines and curves and the edges of filled areas.
[Visual Basic] <Serializable> Public Enum SmoothingMode [C#] [Serializable] public enum SmoothingMode [C++] [Serializable] __value public enum SmoothingMode [JScript] public Serializable enum SmoothingMode
Remarks
The SmoothingMode property does not affect text. To set the text rendering quality, use the TextRenderingHint enumeration.
The smoothing mode does not affect areas filled by a path gradient brush. Areas filled using a PathGradientBrush object are rendered the same way (aliased) regardless of the SmoothingMode property.
Members
| Member name | Description |
|---|---|
| AntiAlias | Specifies antialiased rendering. |
| Default | Specifies the default mode. |
| HighQuality | Specifies high quality, low speed rendering. |
| HighSpeed | Specifies high speed, low quality rendering. |
| Invalid | Specifies an invalid mode. |
| None | Specifies no antialiasing. |
Requirements
Namespace: System.Drawing.Drawing2D
Platforms: Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 family
Assembly: System.Drawing (in System.Drawing.dll)
See Also
Show: