ExcelFormat.cs 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace Biff8Excel.Excel
  5. {
  6. public class ExcelFormat : IDisposable
  7. {
  8. Biff8Excel.Records.Format m_format;
  9. string m_formatString = "";
  10. ushort m_index;
  11. bool m_formatUpdated;
  12. internal ExcelFormat Clone()
  13. {
  14. ExcelFormat fmt = new ExcelFormat();
  15. fmt.FormatString = m_formatString;
  16. fmt.index = m_index;
  17. return fmt;
  18. }
  19. internal byte[] WriteRecord()
  20. {
  21. return m_format.GetByte();
  22. }
  23. public bool Match(ExcelFormat rhs)
  24. {
  25. if (m_formatString == rhs.FormatString)
  26. return true;
  27. else
  28. return false;
  29. }
  30. internal ushort index
  31. {
  32. set
  33. {
  34. m_index = value;
  35. m_format.Index = value ;
  36. }
  37. get { return m_index; }
  38. }
  39. public string FormatString
  40. {
  41. set
  42. {
  43. m_formatString = value;
  44. m_format.FormatString = value;
  45. m_formatUpdated = true;
  46. }
  47. get { return m_formatString; }
  48. }
  49. internal bool Formatupdated
  50. {
  51. get { return m_formatUpdated; }
  52. }
  53. public ExcelFormat()
  54. {
  55. m_format = new Biff8Excel.Records.Format();
  56. }
  57. #region IDisposable ³ÉÔ±
  58. public void Dispose()
  59. {
  60. m_format = null;
  61. }
  62. #endregion
  63. }
  64. }