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

DataGridParentRowsLabelStyle.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: 3f9d86b4d9f42ec794942d201f94aee444c1edd9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
//
// System.Windows.Forms.DataGridParentRowsLabelStyle.cs
//
// Author:
//   Jaak Simm (jaaksimm@firm.ee)
//   Dennis Hayes (dennish@raytek.com)
// (C) 2002 Ximian, Inc.  http://www.ximian.com
//

using System;

namespace System.Windows.Forms {


	/// <summary>
  /// Specifies how the parent row labels of a DataGrid control are displayed.
	/// </summary>
	public enum DataGridParentRowsLabelStyle {

		//Values were verified with enumcheck.
		None = 0,
		TableName = 1,
		ColumnName = 2,
		Both = 3,
	}
}