WorkSheetCollection.cs 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. using System.Collections;
  5. namespace Biff8Excel.Excel
  6. {
  7. public class WorkSheetCollection : CollectionBase, IDisposable
  8. {
  9. Dictionary<string, ExcelWorksheet> Dictionary;
  10. public void Add(ExcelWorksheet worksheet)
  11. {
  12. this.Dictionary.Add(worksheet.SheetName, worksheet);
  13. this.List.Add(worksheet);
  14. }
  15. public ExcelWorksheet this[int index]
  16. {
  17. // used when referencing an element in the collection
  18. // vntIndexKey contains either the Index or Key to the collection,
  19. // this is why it is declared as a Variant
  20. // Syntax: Set foo = x.Item(xyz) or Set foo = x.Item(5)
  21. set
  22. {
  23. if (index < 1)
  24. throw new System.ArgumentException(" smaller than ","index");
  25. //外部索引从1开始,内部从0开始,要得到外部索引的值必须是内部值-1
  26. this.List[index-1] = value;
  27. }
  28. get
  29. {
  30. if (index < 1)
  31. throw new System.ArgumentException( " smaller than ","index");
  32. //外部索引从1开始,内部从0开始,要得到外部索引的值必须是内部值-1
  33. return this.List[index - 1] as ExcelWorksheet;
  34. }
  35. }
  36. public ExcelWorksheet this[string key]
  37. {
  38. set
  39. {
  40. if (this.Dictionary.ContainsKey(key))
  41. this.Dictionary[key] = value;
  42. else
  43. throw new Biff8ExcelException("no this key" + key);
  44. }
  45. get
  46. {
  47. ExcelWorksheet ew ;
  48. if ( this.Dictionary.TryGetValue(key, out ew))
  49. return ew;
  50. else
  51. throw new Biff8ExcelException("no this key" + key);
  52. //return this.Dictionary[key] as ExcelWorksheet;
  53. }
  54. }
  55. public bool Contains(ExcelWorksheet sheet)
  56. {
  57. return this.List.Contains(sheet);
  58. }
  59. public void CopyTo(ExcelWorksheet[] sheets, int index)
  60. {
  61. this.List.CopyTo(sheets, index);
  62. }
  63. public new int Count
  64. {
  65. // used when retrieving the number of elements in the
  66. // collection. Syntax: Debug.Print x.Count
  67. get { return this.Dictionary.Count; }
  68. }
  69. public int IndexOf(ExcelWorksheet sheet)
  70. {
  71. return this.List.IndexOf(sheet);
  72. }
  73. public void Remove(string vntIndexKey)
  74. {
  75. // used when removing an element from the collection
  76. // vntIndexKey contains either the Index or Key, which is why
  77. // it is declared as a Variant
  78. // Syntax: x.Remove(xyz)
  79. this.Dictionary.Remove(vntIndexKey);
  80. this.List.Remove(vntIndexKey);
  81. }
  82. public WorkSheetCollection()
  83. {
  84. Dictionary = new Dictionary<string, ExcelWorksheet>();
  85. }
  86. #region IDisposable 成员
  87. public void Dispose()
  88. {
  89. Dictionary = null;
  90. }
  91. #endregion
  92. }
  93. }