ExcelHeader.cs 4.7 KB

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