2004-04-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
[mono.git] / mcs / class / System.Windows.Forms / System.Windows.Forms / ColumnClickEventArgs.cs
1 //
2 // System.Windows.Forms.ColumnClickEventArgs.cs
3 //
4 // Author:
5 //   stubbed out by Jaak Simm (jaaksimm@firm.ee)
6 //   Implmented by Dennis Hayes <dennish@raytek.com>
7 //
8 // (C) Ximian, Inc., 2002
9 //
10
11 namespace System.Windows.Forms {
12
13         /// <summary>
14         /// Provides data for the ColumnClick event.
15         /// </summary>
16         public class ColumnClickEventArgs : EventArgs {
17
18                 private int column;
19                 /// --- Constructor ---
20                 public ColumnClickEventArgs(int Column) : base() 
21                 {
22                         column = Column;
23                 }
24
25                 /// --- Properties ---
26                 public int Column {
27                         get { 
28                                 return column;
29                         }
30                 }
31         }
32 }