ExcelCells.cs 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. using System.Collections;
  5. using Biff8Excel.Interfaces;
  6. namespace Biff8Excel.Excel
  7. {
  8. public class ExcelCellDictionary : DictionaryBase, IDisposable
  9. {
  10. public void Add(string key, ExcelCell cell)
  11. {
  12. this.Dictionary.Add(key, cell);
  13. }
  14. public int Count
  15. {
  16. // used when retrieving the number of elements in the
  17. // collection. Syntax: Debug.Print x.Count
  18. get { return this.Dictionary.Count; }
  19. }
  20. public ExcelCellDictionary()
  21. {
  22. }
  23. public ExcelCell this[string key]
  24. {
  25. set
  26. {
  27. this.Dictionary[key] = value;
  28. }
  29. get
  30. {
  31. //return this.Dictionary[key] as ExcelCell;
  32. return this.Dictionary[key] as ExcelCell;
  33. }
  34. }
  35. public void Remove(string vntIndexKey)
  36. {
  37. // used when removing an element from the collection
  38. // vntIndexKey contains either the Index or Key, which is why
  39. // it is declared as a Variant
  40. // Syntax: x.Remove(xyz)
  41. this.Dictionary.Remove(vntIndexKey);
  42. }
  43. public void CopyTo(ExcelCell[] excelcells, int index)
  44. {
  45. this.Dictionary.Values.CopyTo(excelcells, index);
  46. }
  47. #region IDisposable ³ÉÔ±
  48. public void Dispose()
  49. {
  50. }
  51. #endregion
  52. }
  53. }