MergedCells.cs 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. using Biff8Excel.Records;
  5. namespace Biff8Excel.Excel
  6. {
  7. public class MergedCells:IDisposable
  8. {
  9. Records.MergedCells m_merged;
  10. Records.StructMergedCells[] m_arrMergedCells;
  11. ushort m_total;
  12. internal byte[] WriteRecord()
  13. {
  14. if (m_total > 0)
  15. {
  16. Array.Resize<StructMergedCells>(ref m_arrMergedCells, m_total);
  17. m_merged.SetMergedCells = m_arrMergedCells;
  18. return m_merged.GetByte();
  19. }
  20. return null;
  21. }
  22. internal void AddMergedCells(ushort iFirstRow, ushort iLastRow, ushort iFirstColumn, ushort iLastColumn)
  23. {
  24. // Zero Based
  25. if (iFirstRow > 0)
  26. iFirstRow--;
  27. if (iLastRow > 0)
  28. iLastRow--;
  29. if (iFirstColumn > 0)
  30. iFirstColumn--;
  31. if (iLastColumn > 0)
  32. iLastColumn--;
  33. if (m_total >= m_arrMergedCells.Length)
  34. {
  35. Array.Resize<StructMergedCells>(ref m_arrMergedCells, m_arrMergedCells.Length + 10);
  36. }
  37. m_total++;
  38. m_arrMergedCells[m_total - 1].mcFirstCol = iFirstColumn;
  39. m_arrMergedCells[m_total - 1].mcFirstRow = iFirstRow;
  40. m_arrMergedCells[m_total - 1].mcLastCol = iLastColumn;
  41. m_arrMergedCells[m_total - 1].mcLastRow = iLastRow;
  42. }
  43. internal ushort Total
  44. {
  45. get { return m_total; }
  46. }
  47. public MergedCells()
  48. {
  49. m_merged = new Biff8Excel.Records.MergedCells();
  50. m_arrMergedCells = new StructMergedCells[10]; // make room for 10 in the array
  51. }
  52. #region IDisposable ³ÉÔ±
  53. public void Dispose()
  54. {
  55. m_merged = null;
  56. m_arrMergedCells = null;
  57. }
  58. #endregion
  59. }
  60. }