CellCollection.cs 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. using System.Collections;
  5. using Biff8Excel.Interface;
  6. using Biff8Excel.Excel;
  7. namespace Biff8Excel.Formulas
  8. {
  9. public class CellCollection : CollectionBase
  10. {
  11. Dictionary<string, ExcelCell> dic;
  12. public CellCollection()
  13. {
  14. dic = new Dictionary<string, ExcelCell>();
  15. }
  16. public void Add(ExcelCell Value)
  17. {
  18. List.Add(Value);
  19. dic.Add(Value.ToString(), Value);
  20. }
  21. public void Add( string key,ExcelCell Value)
  22. {
  23. List.Add(Value);
  24. dic.Add(key, Value);
  25. }
  26. public ICell this[int index]
  27. {
  28. get
  29. {
  30. return List[index] as ExcelCell;
  31. }
  32. set
  33. {
  34. List[index] = value;
  35. }
  36. }
  37. public ICell this[string key]
  38. {
  39. get {
  40. ExcelCell exc;
  41. if (dic.TryGetValue(key, out exc) == false )
  42. return null;
  43. return dic[key] as ExcelCell; }
  44. }
  45. }
  46. }