SmoothingMode
Specifies whether smoothing (antialiasing) is applied to lines and curves and the edges of filled areas.
namespace System.Drawing.Drawing2D
{
public enum SmoothingMode
{
Invalid = -1,
Default,
HighSpeed,
HighQuality,
None,
AntiAlias
}
}