ExcelFooter.cs 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace Biff8Excel.Excel
  5. {
  6. /// <summary>
  7. /// 用于定义Excel页脚的内容及格式
  8. /// </summary>
  9. public class ExcelFooter: IDisposable
  10. {
  11. Biff8Excel.Records.Footer m_footer;
  12. StringBuilder m_footerString;
  13. internal byte[] WriteRecord()
  14. {
  15. if (m_footerString.Length == 0)
  16. return null ;
  17. // make sure the string starts in one of the three sections
  18. // in case we forget put it in the left section
  19. switch(m_footerString.ToString().Substring(0,2))
  20. {
  21. case "&L":
  22. case "&C":
  23. case "&R":
  24. break;
  25. default :
  26. m_footerString.Append("&L");
  27. break;
  28. }
  29. m_footer.Foot = Globals.GetUnicodeBytes(m_footerString.ToString());
  30. m_footer.TextLength = (ushort)m_footerString.ToString().Length;
  31. return m_footer.GetByte();
  32. }
  33. public void AddText(string sText)
  34. {
  35. if (sText.Length == 0)
  36. return;
  37. int pos;
  38. //Check fot the & character, needs to be duplicated in the string
  39. pos = 0;
  40. while(true)
  41. {
  42. pos = sText.IndexOf('&',pos);
  43. if (pos < 0)
  44. break;
  45. //add an extra & character
  46. sText = sText.Substring(0,pos+1) + sText.Substring(pos);
  47. pos += 2;
  48. }
  49. m_footerString.Append(sText);
  50. }
  51. public void SetFont(string fontName)
  52. {
  53. SetFont(fontName, EnumFontStyle.Regular);
  54. }
  55. public void SetFont(string fontName, EnumFontStyle fontStyle)
  56. {
  57. //m_footerstring = m_footerstring.Insert(m_footerstring.Length, "&" + (char)(0x22)); // Quotes
  58. //m_footerstring = m_footerstring.Insert(m_footerstring.Length, ",");
  59. m_footerString.Append("&" + (char)(0x22));
  60. m_footerString.Append(fontName + ","); // Quotes 双引号
  61. string s ="";
  62. switch (fontStyle)
  63. {
  64. case EnumFontStyle.Regular:
  65. s = "Regular";
  66. break;
  67. case EnumFontStyle.Bold:
  68. s = "Bold";
  69. break;
  70. case EnumFontStyle.Italic :
  71. s = "Italic";
  72. break;
  73. case EnumFontStyle.BoldItalic :
  74. s = "Bold Italic";
  75. break;
  76. }
  77. m_footerString.Append(s + (char)(0x22));
  78. }
  79. public void SetFontSize(ushort fontSize)
  80. {
  81. m_footerString.Append("&" + fontSize.ToString());
  82. }
  83. public void StartLeftSection()
  84. {
  85. m_footerString.Append("&L");
  86. }
  87. public void StartCenterSection()
  88. {
  89. m_footerString.Append("&C");
  90. }
  91. public void StartRightSection()
  92. {
  93. m_footerString.Append("&R");
  94. }
  95. public void AddPageNumber()
  96. {
  97. m_footerString.Append("&P");
  98. }
  99. public void AddPageCount()
  100. {
  101. m_footerString.Append("&N");
  102. }
  103. public void AddCurrentDate()
  104. {
  105. m_footerString.Append("&D");
  106. }
  107. public void AddCurrentTime()
  108. {
  109. m_footerString.Append("&T");
  110. }
  111. public void AddSheetName()
  112. {
  113. m_footerString.Append("&A");
  114. }
  115. public void AddFileName()
  116. {
  117. m_footerString.Append("&F");
  118. }
  119. // This is the same for both on and off, but makes code clearer to define then separately
  120. public void SetUnderlineOn()
  121. {
  122. m_footerString.Append("&U");
  123. }
  124. public void SetUnderlineOff()
  125. {
  126. m_footerString.Append("&U");
  127. }
  128. public void SetDoubleUnderlineOn()
  129. {
  130. m_footerString.Append("&E");
  131. }
  132. public void SetDoubleUnderlineOff()
  133. {
  134. m_footerString.Append("&E");
  135. }
  136. public void SetStrikeOutOnOff()
  137. {
  138. m_footerString.Append("&S");
  139. }
  140. public void SetSuperScriptOutOnOff()
  141. {
  142. m_footerString.Append("&X");
  143. }
  144. public void SetSubScriptOutOnOff()
  145. {
  146. m_footerString.Append("&Y");
  147. }
  148. public ExcelFooter()
  149. {
  150. m_footer = new Biff8Excel.Records.Footer();
  151. m_footerString = new StringBuilder();
  152. }
  153. #region IDisposable 成员
  154. public void Dispose()
  155. {
  156. m_footer = null;
  157. m_footerString = null;
  158. }
  159. #endregion
  160. }
  161. }