// // System.Windows.Forms.ColumnClickEventArgs.cs // // Author: // stubbed out by Jaak Simm (jaaksimm@firm.ee) // Implmented by Dennis Hayes // // (C) Ximian, Inc., 2002 // namespace System.Windows.Forms { /// /// Provides data for the ColumnClick event. /// public class ColumnClickEventArgs : EventArgs { private int column; /// --- Constructor --- public ColumnClickEventArgs(int Column) : base() { column = Column; } /// --- Properties --- public int Column { get { return column; } } } }