// // System.Windows.Forms.GridTableStylesCollection.cs // // Author: // stubbed out by Daniel Carrera (dcarrera@math.toronto.edu) // // (C) 2002 Ximian, Inc // using System.Collections; using System.ComponentModel; namespace System.Windows.Forms { // // This is only a template. Nothing is implemented yet. // // public class GridTableStylesCollection : BaseCollection, IList { // // --- Public Properties // [MonoTODO] public DataGridTableStyle this[int index] { get { throw new NotImplementedException (); } } [MonoTODO] public DataGridTableStyle this[string s] { get { throw new NotImplementedException (); } } // // --- Public Methods // [MonoTODO] public virtual int Add(DataGridTableStyle table) { throw new NotImplementedException (); } [MonoTODO] public virtual void AddRange(DataGridTableStyle[] tables) { throw new NotImplementedException (); } [MonoTODO] public virtual void Clear() { throw new NotImplementedException (); } [MonoTODO] public virtual bool Equals(object o) { throw new NotImplementedException (); } [MonoTODO] public static bool Equals(object o1, object o2) { throw new NotImplementedException (); } [MonoTODO] public bool Contains(DataGridTableStyle table) { throw new NotImplementedException (); } [MonoTODO] public void Remove(DataGridTableStyle table) { throw new NotImplementedException (); } [MonoTODO] public void RemoveAt(int index) { throw new NotImplementedException (); } // // --- Public Events // [MonoTODO] public event CollectionChangeEventHandler CollectionChanged; // // --- Protected Properties // [MonoTODO] protected override ArrayList List { get { throw new NotImplementedException (); } } // // --- Protected Methods // [MonoTODO] protected void OnCollectionChanged(CollectionChangeEventArgs cevent) { throw new NotImplementedException (); } } }