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

ColorDepth.cs « System.Windows.Forms « System.Windows.Forms « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 9ee4992bb42cd8d918a9d8ce91da9cbacc486f88 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
//
// System.Windows.Forms.ColorDepth.cs
//
// Author:
//   Dennis Hayes (dennish@raytek.com)
// (C) 2002 Ximian, Inc.  http://www.ximian.com
//

using System;

namespace System.Windows.Forms {

	/// <summary>
	/// </summary>
	public enum ColorDepth {
		Depth16Bit = 16,
		Depth24Bit = 24,
		Depth32Bit = 32,
		Depth4Bit = 4,
		Depth8Bit = 8
	}
}