2004-04-13 Andreas Nahr <ClassDevelopment@A-SoftTech.com>
[mono.git] / mcs / class / System.Windows.Forms / System.Windows.Forms / DataGridParentRowsLabelStyle.cs
1 //
2 // System.Windows.Forms.DataGridParentRowsLabelStyle.cs
3 //
4 // Author:
5 //   Jaak Simm (jaaksimm@firm.ee)
6 //   Dennis Hayes (dennish@raytek.com)
7 // (C) 2002 Ximian, Inc.  http://www.ximian.com
8 //
9
10 using System;
11
12 namespace System.Windows.Forms {
13
14
15         /// <summary>
16   /// Specifies how the parent row labels of a DataGrid control are displayed.
17         /// </summary>
18         public enum DataGridParentRowsLabelStyle {
19
20                 //Values were verified with enumcheck.
21                 None = 0,
22                 TableName = 1,
23                 ColumnName = 2,
24                 Both = 3,
25         }
26 }