ExcelFont.cs 6.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace Biff8Excel.Excel
  5. {
  6. //'---------------------------------------------------------------------------------------
  7. //' Module : ExcelFont
  8. //' Author : Alan Haigh alan.haigh@salvesen.com
  9. //' Purpose : represents a font in a row, column or cell in a worksheet
  10. //'---------------------------------------------------------------------------------------
  11. public class ExcelFont : IDisposable
  12. {
  13. Biff8Excel.Records.Font m_font;
  14. string m_fontname;
  15. ushort m_size;
  16. EnumFontUnderlineType m_underline;
  17. EnumColours m_colour;
  18. EnumFontEscapement m_esc;
  19. EnumFontFamily m_family;
  20. EnumFontCharacterSet m_charset;
  21. bool m_bold;
  22. bool m_italic;
  23. bool m_structout;
  24. bool m_fontUpdated;
  25. internal ExcelFont Clone()
  26. {
  27. ExcelFont fnt = new ExcelFont();
  28. fnt.Bold = m_bold;
  29. fnt.CharacterSet = m_charset;
  30. fnt.Colour = m_colour;
  31. fnt.Escapement = m_esc;
  32. fnt.Family = m_family;
  33. fnt.Italic = m_italic;
  34. fnt.Name = m_fontname;
  35. fnt.Size = m_size;
  36. fnt.Struckout = m_structout;
  37. fnt.Underline = m_underline;
  38. return fnt;
  39. }
  40. internal void Init()
  41. {
  42. m_fontname = "Arial";
  43. m_size = 10;
  44. m_colour = EnumColours.SystemText;
  45. }
  46. public string Name
  47. {
  48. set
  49. {
  50. m_fontname = value;
  51. m_font.FontName = m_fontname;
  52. m_fontUpdated = true;
  53. }
  54. get { return m_fontname;}
  55. }
  56. public ushort Size
  57. {
  58. set
  59. {
  60. m_size = value;
  61. m_font.Size = value;
  62. m_fontUpdated = true;
  63. }
  64. get { return m_size; }
  65. }
  66. public bool Italic
  67. {
  68. set
  69. {
  70. m_italic = value;
  71. if (value)
  72. {
  73. if (m_structout)
  74. m_font.Attributes = (ushort)(EnumFontAttributes.Italic | EnumFontAttributes.StruckOut);
  75. else
  76. m_font.Attributes = (ushort)EnumFontAttributes.Italic;
  77. }
  78. else
  79. {
  80. if (m_structout)
  81. m_font.Attributes = (ushort)EnumFontAttributes.StruckOut;
  82. }
  83. m_fontUpdated = true;
  84. }
  85. get{return m_italic;}
  86. }
  87. public bool Struckout
  88. {
  89. set
  90. {
  91. m_structout = value;
  92. if (value)
  93. {
  94. if (m_italic)
  95. m_font.Attributes = (ushort)(EnumFontAttributes.Italic | EnumFontAttributes.StruckOut);
  96. else
  97. m_font.Attributes = (ushort)EnumFontAttributes.StruckOut;
  98. }
  99. else
  100. {
  101. if (m_italic)
  102. m_font.Attributes = (ushort)EnumFontAttributes.Italic;
  103. }
  104. m_fontUpdated = true;
  105. }
  106. get{return m_structout;}
  107. }
  108. public bool Bold
  109. {
  110. set
  111. {
  112. m_bold = value;
  113. if (m_bold)
  114. m_font.BoldWeight = (ushort)EnumFontBoldWeight.Bold700;
  115. else
  116. m_font.BoldWeight = (ushort)EnumFontBoldWeight.Normal400;
  117. m_fontUpdated = true;
  118. }
  119. get
  120. {
  121. return m_bold;
  122. }
  123. }
  124. public EnumFontUnderlineType Underline
  125. {
  126. set
  127. {
  128. m_underline = value;
  129. m_font.Underline = (byte)m_underline;
  130. m_fontUpdated = true;
  131. }
  132. get { return m_underline; }
  133. }
  134. public EnumColours Colour
  135. {
  136. set
  137. {
  138. m_colour = value;
  139. m_font.ColourIndex = (ushort)m_colour;
  140. m_fontUpdated = true;
  141. }
  142. get { return m_colour; }
  143. }
  144. public EnumFontEscapement Escapement
  145. {
  146. set
  147. {
  148. m_esc = value;
  149. m_font.Escapement = (ushort)m_esc;
  150. m_fontUpdated = true;
  151. }
  152. get { return m_esc; }
  153. }
  154. public EnumFontFamily Family
  155. {
  156. set
  157. {
  158. m_family = value;
  159. m_font.Family = (byte)m_family;
  160. m_fontUpdated = true;
  161. }
  162. get { return m_family; }
  163. }
  164. public EnumFontCharacterSet CharacterSet
  165. {
  166. set
  167. {
  168. m_charset = value;
  169. m_font.Charset = (byte)m_charset;
  170. m_fontUpdated = true;
  171. }
  172. get { return m_charset; }
  173. }
  174. internal bool FontUpdated
  175. {
  176. get { return m_fontUpdated; }
  177. }
  178. public byte[] WriteRecord()
  179. {
  180. return m_font.GetByte();
  181. }
  182. public bool Match(ExcelFont rhs)
  183. {
  184. if (m_fontname == rhs.Name &&
  185. m_italic == rhs.Italic &&
  186. m_underline == rhs.Underline &&
  187. m_bold == rhs.Bold &&
  188. m_charset == rhs.CharacterSet &&
  189. m_colour == rhs.Colour &&
  190. m_esc == rhs.Escapement &&
  191. m_family == rhs.Family &&
  192. m_size == rhs.Size &&
  193. m_underline == rhs.Underline)
  194. return true;
  195. else
  196. return false;
  197. }
  198. public ExcelFont()
  199. {
  200. m_font = new Biff8Excel.Records.Font();
  201. m_font.BoldWeight = (ushort)EnumFontBoldWeight.Normal400;
  202. m_font.Charset = (byte)EnumFontCharacterSet.AnsiChineseSimplified;
  203. m_charset = EnumFontCharacterSet.AnsiChineseSimplified;
  204. }
  205. #region IDisposable ³ÉÔ±
  206. public void Dispose()
  207. {
  208. m_font = null;
  209. }
  210. #endregion
  211. }
  212. }