Welcome to mirror list, hosted at ThFree Co, Russian Federation.

TextRenderingHint.cs « System.Drawing.Text « System.Drawing « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 5f11cdcbb737a56ac868ffba23921a67c381e5d0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//
// System.Drawing.TextRenderingHint.cs
//
// (C) 2002 Ximian, Inc.  http://www.ximian.com
// Author: Dennis Hayes (dennish@raytek.com)
//
using System;
namespace System.Drawing.Text 
{
	public enum TextRenderingHint {
		AntiAlias = 4,
		AntiAliasGridFit = 3,
		ClearTypeGridFit = 5,
		SingleBitPerPixel = 2,
		SingleBitPerPixelGridFit = 1,
		SystemDefault = 0
	}
}