ExcelRowLink.cs 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. using System.Collections;
  5. namespace Biff8Excel.Excel
  6. {
  7. /// <summary>
  8. /// 所有有内容ExcelCellLink的链
  9. /// key 为行号 从零开始
  10. /// </summary>
  11. public class ExcelRowLinkDictionary : SortedList<ushort,ExcelCellLinkDictionary> //BaseTwoLinkList<ExcelCellLink>
  12. {
  13. ExcelCellLinkDictionary arrCells;
  14. //ushort m_sheetNumber;
  15. //ushort m_rowNumber;
  16. ExcelWorkbook pWorkbook;
  17. public ExcelRowLinkDictionary(ExcelWorkbook pWorkbook) : base()
  18. {
  19. this.pWorkbook = pWorkbook;
  20. }
  21. /// <summary>
  22. /// 为指定单元格赋值
  23. /// </summary>
  24. /// <param name="iRow">行</param>
  25. /// <param name="iColumn">列</param>
  26. /// <param name="oCell">单元格的实例</param>
  27. public void AddCell(ushort iRow, ushort iColumn, ExcelCell oCell)
  28. {
  29. //TwoLinkNode<ExcelCellLink> tp;
  30. //nodeLocation nl = FindByIndex(iRow, out tp);
  31. //if (nl != nodeLocation.current)
  32. //{
  33. // arrCells = new ExcelCellLink(pWorkbook);
  34. // arrCells.sheetNumber = sheetnumber;
  35. // arrCells.rowNumber = iRow;
  36. // base.Insert(iRow, arrCells, nl);
  37. //}
  38. //current.Data.Insert(iColumn, oCell);
  39. if (this.TryGetValue(iRow, out arrCells))
  40. {
  41. arrCells.SetCell(iColumn, oCell);
  42. }
  43. else
  44. {
  45. arrCells = new ExcelCellLinkDictionary(pWorkbook);
  46. //arrCells.sheetNumber = sheetnumber;
  47. arrCells.rowNumber = iRow;
  48. arrCells.AddCell(iColumn, oCell);
  49. this.Add(iRow, arrCells);
  50. }
  51. }
  52. internal ushort LastUsedRow
  53. {
  54. get { return this.Keys[this.Count - 1]; }
  55. //get { return this.tail.Index; }
  56. }
  57. //internal ushort sheetNumber
  58. //{
  59. // set { m_sheetNumber = value; }
  60. //}
  61. }
  62. }