Index.cs 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace Biff8Excel.Excel
  5. {
  6. public class Index : IDisposable
  7. {
  8. Biff8Excel.Records.INdex m_index;
  9. uint m_streamOffset; // Position of this record in the Output Stream
  10. uint m_DefColumnRecordOffset;
  11. uint[] m_DBOffsets;
  12. public byte[] WriteRecord()
  13. {
  14. return m_index.GetByte();
  15. }
  16. public uint StreamOffset
  17. {
  18. set { m_streamOffset = value; }
  19. get { return m_streamOffset; }
  20. }
  21. public ushort FirstRowUsed
  22. {
  23. set { m_index.FirstRowIndex = value; }
  24. }
  25. public ushort LastRowUsed
  26. {
  27. set {
  28. if ( value > (ushort.MaxValue - 1))
  29. throw new ArgumentException("LastRowUsed too bigger", "value");
  30. m_index.LastRowIndex = ((uint)(value + 1)); }
  31. }
  32. public uint DefColumnRecordOffset
  33. {
  34. set
  35. {
  36. m_DefColumnRecordOffset = value;
  37. m_index.DefColumnRecordOffset = value;
  38. }
  39. get { return m_DefColumnRecordOffset; }
  40. }
  41. public uint[] DBCellOffsets
  42. {
  43. set
  44. {
  45. m_DBOffsets = value;
  46. m_index.DBCellOffsets = value;
  47. }
  48. get { return m_DBOffsets; }
  49. }
  50. public Index()
  51. {
  52. m_index = new Biff8Excel.Records.INdex();
  53. }
  54. #region IDisposable ³ÉÔ±
  55. public void Dispose()
  56. {
  57. m_index = null;
  58. }
  59. #endregion
  60. }
  61. }