ColInfo.cs 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace Biff8Excel.Excel
  5. {
  6. public class ColInfo
  7. {
  8. ushort m_styleIdx;
  9. ushort m_from;
  10. ushort m_to;
  11. Biff8Excel.Records.ColInfo m_colInfo;
  12. public ColInfo()
  13. {
  14. m_colInfo = new Biff8Excel.Records.ColInfo();
  15. }
  16. internal ushort FromColumn
  17. {
  18. get { return m_from; }
  19. }
  20. internal void SetColumnStyle(ushort vFrom, ushort vTo, ushort vWidth, ushort iStyleIndex)
  21. {
  22. m_from = vFrom;
  23. m_to = vTo;
  24. m_styleIdx = iStyleIndex;
  25. m_colInfo.FirstColumn = (ushort)(vFrom - 1);
  26. m_colInfo.LastColumn = (ushort)(vTo - 1);
  27. m_colInfo.Width = vWidth;
  28. m_colInfo.CellStyle = iStyleIndex;
  29. }
  30. internal ushort StyleIndex
  31. {
  32. get { return m_styleIdx; }
  33. }
  34. internal ushort ToColumn
  35. {
  36. get { return m_to; }
  37. }
  38. internal byte[] WriteRecord()
  39. {
  40. return m_colInfo.GetByte();
  41. }
  42. }
  43. }