//// //// System.Windows.Forms.GridItem.cs //// //// Author: //// stubbed out by Daniel Carrera (dcarrera@math.toronto.edu) //// //// (C) 2002 Ximian, Inc //// // //namespace System.Windows.Forms //{ // public abstract class GridItem // { // // // // // --- Public Properties // // // [MonoTODO] // public bool Expandable // { // get { throw new NotImplementedException (); } // } // [MonoTODO] // public bool Expanded // { // get { throw new NotImplementedException (); } // set { throw new NotImplementedException (); } // } // [MonoTODO] // public abstract GridItemCollection GridItems // { // get { throw new NotImplementedException (); } // } // [MonoTODO] // public abstract GridItemType GridItemType // { // get { throw new NotImplementedException (); } // } // [MonoTODO] // public abstract string Label // { // get { throw new NotImplementedException (); } // } // [MonoTODO] // public abstract GridItem Parent // { // get { throw new NotImplementedException (); } // } // [MonoTODO] // public abstract PropertyDescriptor PropertyDescriptor // { // get { throw new NotImplementedException (); } // } // [MonoTODO] // public abstract object Value // { // get { throw new NotImplementedException (); } // } // // // // // --- Public Properties // // // [MonoTODO] // public virtual bool Equals(object o); // { // throw new NotImplementedException (); // } // [MonoTODO] // public static bool Equals(object o1, object o2); // { // throw new NotImplementedException (); // } // // // // // --- Protected Constructor // // // [MonoTODO] // protected GridItem() // { // throw new NotImplementedException (); // } // // } //}