ExcelCellStyle.cs 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace Biff8Excel.Excel
  5. {
  6. //'---------------------------------------------------------------------------------------
  7. //' Module : ExcelCellStyle
  8. //' Author : Alan Haigh alan.haigh@salvesen.com
  9. //' Purpose : Represents the Style of a Single row, column or cell in a worksheet
  10. //'---------------------------------------------------------------------------------------
  11. public class ExcelCellStyle : IDisposable
  12. {
  13. ExcelFont m_font;
  14. ExcelFormat m_format;
  15. Biff8Excel.Records.ExtendedFormat m_xf;
  16. internal ExcelWorkbook pWorkbook;
  17. ushort m_fontIndex;
  18. ushort m_formatIndex;
  19. int m_styleIndex;
  20. bool m_celLocked;
  21. bool m_formulaHidden;
  22. EnumType m_styleType;
  23. EnumHorizontalAlignment m_horizAlign;
  24. bool m_wrapText;
  25. EnumVerticalAlignment m_verAlign;
  26. byte m_RotatAngle;
  27. bool m_stackText;
  28. EnumLineStyle m_L_LineStyle;
  29. EnumLineStyle m_R_LineStyle;
  30. EnumLineStyle m_T_LineStyle;
  31. EnumLineStyle m_B_LineStyle;
  32. EnumLineStyle m_Bdr_LineStyle;
  33. EnumLineStyle m_D_LineStyle;
  34. bool m_D_TLBR;
  35. bool m_D_TRBL;
  36. EnumColours m_L_Colour;
  37. EnumColours m_R_Colour;
  38. EnumColours m_T_Colour;
  39. EnumColours m_B_Colour;
  40. EnumColours m_D_Colour;
  41. EnumColours m_Bdr_Colour;
  42. EnumFill m_fillPattern;
  43. EnumColours m_fillForeColour;
  44. EnumColours m_fillBackColour;
  45. bool m_styleUpdated;
  46. EnumUsedAttrib m_usedAttribute;
  47. public EnumColours BorderColour
  48. {
  49. set
  50. {
  51. m_Bdr_Colour = value;
  52. m_xf.TopLineColour = (byte)value;
  53. m_xf.LeftLineColour = (byte)value;
  54. m_xf.BottomLineColour = (byte)value;
  55. m_xf.RightLineColour = (byte)value;
  56. m_styleUpdated = true;
  57. }
  58. get { return m_Bdr_Colour; }
  59. }
  60. public EnumLineStyle BorderLineStyle
  61. {
  62. set
  63. {
  64. m_Bdr_LineStyle = value;
  65. m_xf.TopLineStyle = (byte)value;
  66. m_xf.LeftLineStyle = (byte)value;
  67. m_xf.BottomLineStyle = (byte)value;
  68. m_xf.RightLineStyle = (byte)value;
  69. m_styleUpdated = true;
  70. if (m_Bdr_LineStyle != EnumLineStyle.None)
  71. if (BorderColour == 0)
  72. BorderColour = (EnumColours)0x40;
  73. }
  74. get { return m_Bdr_LineStyle; }
  75. }
  76. public EnumColours BottomLineColour
  77. {
  78. set
  79. {
  80. m_B_Colour = value;
  81. m_xf.BottomLineColour = (byte)m_B_Colour;
  82. m_styleUpdated = true;
  83. }
  84. get { return m_B_Colour; }
  85. }
  86. public EnumLineStyle BottomLineStyle
  87. {
  88. set
  89. {
  90. m_B_LineStyle = value;
  91. m_xf.BottomLineStyle = (byte)m_B_LineStyle;
  92. m_styleUpdated = true;
  93. if (m_B_LineStyle != EnumLineStyle.None)
  94. if (m_B_Colour == 0)
  95. m_B_Colour = EnumColours.SkyBlue;
  96. }
  97. get { return m_B_LineStyle; }
  98. }
  99. public bool CellIsLocked
  100. {
  101. set
  102. {
  103. m_celLocked = value;
  104. m_xf.CellIsLocked = value;
  105. m_styleUpdated = true;
  106. }
  107. get { return m_celLocked; }
  108. }
  109. public ExcelCellStyle Clone()
  110. {
  111. //ExcelCellStyle Style = new ExcelCellStyle(pWorkbook);
  112. ExcelCellStyle Style = pWorkbook.CreateStyle();
  113. Style.Font = m_font.Clone();
  114. Style.Format = m_format.Clone();
  115. Style.BorderColour = m_Bdr_Colour;
  116. Style.BorderLineStyle = m_Bdr_LineStyle;
  117. Style.BottomLineColour = m_B_Colour;
  118. Style.BottomLineStyle = m_B_LineStyle;
  119. Style.CellIsLocked = m_celLocked;
  120. Style.DiagLineColour = m_D_Colour;
  121. Style.DiagLineStyle = m_D_LineStyle;
  122. Style.DiagLineTopLeftToBottomRight = m_D_TLBR;
  123. Style.DiagLineTopRightToBottomLeft = m_D_TRBL;
  124. Style.FontIndex = m_fontIndex;
  125. Style.FormatIndex = m_formatIndex;
  126. Style.FormulaHidden = m_formulaHidden;
  127. Style.HorizontalAlignment = m_horizAlign;
  128. Style.LeftLineColour = m_L_Colour;
  129. Style.LeftLineStyle = m_L_LineStyle;
  130. Style.Pattern = m_fillPattern;
  131. Style.PatternBackColour = m_fillBackColour;
  132. Style.PatternForeColour = m_fillForeColour;
  133. Style.RightLineColour = m_R_Colour;
  134. Style.RightLineStyle = m_R_LineStyle;
  135. Style.StackText = m_stackText;
  136. Style.StyleType = m_styleType;
  137. Style.TextRotationAngle = m_RotatAngle;
  138. Style.TopLineColour = m_T_Colour;
  139. Style.TopLineStyle = m_T_LineStyle;
  140. Style.UseParentStyleOptions = (byte)m_usedAttribute;
  141. Style.VerticalAlignment = m_verAlign;
  142. Style.WrapText = m_wrapText;
  143. return Style;
  144. }
  145. public EnumColours DiagLineColour
  146. {
  147. set
  148. {
  149. m_D_Colour = value;
  150. m_xf.DiagLineColour = (byte)value;
  151. m_styleUpdated = true;
  152. }
  153. get { return m_D_Colour; }
  154. }
  155. public EnumLineStyle DiagLineStyle
  156. {
  157. set
  158. {
  159. m_D_LineStyle = value;
  160. m_xf.DiagLineStyle = (byte)value;
  161. m_styleUpdated = true;
  162. if (m_D_LineStyle != EnumLineStyle.None)
  163. if (m_D_Colour == 0)
  164. m_D_Colour = EnumColours.SkyBlue;
  165. }
  166. get { return m_D_LineStyle; }
  167. }
  168. public bool DiagLineTopLeftToBottomRight
  169. {
  170. set
  171. {
  172. m_D_TLBR = value;
  173. m_xf.DiagLineTopLeftToBottonRight = (byte)(value ? 1 : 0);
  174. m_styleUpdated = true;
  175. }
  176. get { return m_D_TLBR; }
  177. }
  178. public bool DiagLineTopRightToBottomLeft
  179. {
  180. set
  181. {
  182. m_D_TRBL = value;
  183. m_xf.DiagLineTopRightToBottonLeft = (byte)(value ? 1 : 0);
  184. m_styleUpdated = true;
  185. }
  186. get { return m_D_TRBL; }
  187. }
  188. //public ExcelCellStyle(ExcelWorkbook pWorkbook):this()
  189. //{
  190. // this.pWorkbook = pWorkbook;
  191. //}
  192. internal ExcelCellStyle()
  193. {
  194. this.pWorkbook = pWorkbook;
  195. m_font = new ExcelFont();
  196. m_format = new ExcelFormat();
  197. m_xf = new Biff8Excel.Records.ExtendedFormat();
  198. m_celLocked = true;
  199. m_verAlign = EnumVerticalAlignment.Bottom;
  200. m_fillBackColour = EnumColours.SystemBackground;
  201. m_fillForeColour = EnumColours.SystemBorder;
  202. m_xf.CellIsLocked = m_celLocked;
  203. m_xf.VerticalAlignment = (byte)m_verAlign;
  204. m_xf.PatternBackColour = (byte)m_fillBackColour;
  205. m_xf.PatternForeColour = (byte)m_fillForeColour;
  206. //m_formatIndex = 0;
  207. m_styleIndex = -1;
  208. // This is the default font;
  209. //m_fontIndex = 0;
  210. m_font.Init();
  211. }
  212. public ExcelFont Font
  213. {
  214. set { m_font = value; }
  215. get { return m_font; }
  216. }
  217. public ExcelFormat Format
  218. {
  219. set { m_format = value; }
  220. get { return m_format; }
  221. }
  222. internal ushort FontIndex
  223. {
  224. set
  225. {
  226. m_fontIndex = value;
  227. m_xf.FontIndex = value;
  228. m_styleUpdated = true;
  229. }
  230. get { return m_fontIndex; }
  231. }
  232. internal ushort FormatIndex
  233. {
  234. set
  235. {
  236. m_formatIndex = value;
  237. m_xf.FormatIndex = value; // user defined formats start at 164
  238. m_styleUpdated = true;
  239. }
  240. get { return m_formatIndex; }
  241. }
  242. public bool FormulaHidden
  243. {
  244. set
  245. {
  246. m_formulaHidden = value;
  247. m_xf.FormulaHidden = value;
  248. m_styleUpdated = true;
  249. }
  250. get { return m_formulaHidden; }
  251. }
  252. public EnumHorizontalAlignment HorizontalAlignment
  253. {
  254. set
  255. {
  256. m_horizAlign = value;
  257. m_xf.HorizontalAlignment = (byte)value;
  258. m_styleUpdated = true;
  259. }
  260. get { return m_horizAlign; }
  261. }
  262. public void RowsInit()
  263. {
  264. m_verAlign = EnumVerticalAlignment.Bottom;
  265. m_fillForeColour = EnumColours.SystemBorder;
  266. m_fillBackColour = EnumColours.SystemBackground;
  267. m_celLocked = true;
  268. m_styleType = EnumType.Cell;
  269. }
  270. public EnumColours LeftLineColour
  271. {
  272. set
  273. {
  274. m_L_Colour = value;
  275. m_xf.LeftLineColour = (byte)value;
  276. m_styleUpdated = true;
  277. }
  278. get { return m_L_Colour; }
  279. }
  280. public EnumLineStyle LeftLineStyle
  281. {
  282. set
  283. {
  284. m_L_LineStyle = value;
  285. m_xf.LeftLineStyle = (byte)value;
  286. m_styleUpdated = true;
  287. if (m_L_LineStyle != EnumLineStyle.None)
  288. if (m_L_Colour == 0)
  289. m_L_Colour = EnumColours.SkyBlue;
  290. }
  291. get { return m_L_LineStyle; }
  292. }
  293. internal bool Match(ExcelCellStyle RHS)
  294. {
  295. //if (this.Equals(RHS))
  296. if (m_fontIndex == RHS.FontIndex && m_formatIndex == RHS.FormatIndex &&
  297. m_celLocked == RHS.CellIsLocked && m_formulaHidden == RHS.FormulaHidden &&
  298. m_styleType == RHS.StyleType && m_horizAlign == RHS.HorizontalAlignment &&
  299. m_wrapText == RHS.WrapText && m_verAlign == RHS.VerticalAlignment &&
  300. m_RotatAngle == RHS.TextRotationAngle && m_stackText == RHS.StackText &&
  301. m_L_LineStyle == RHS.LeftLineStyle && m_T_LineStyle == RHS.TopLineStyle &&
  302. m_R_LineStyle == RHS.RightLineStyle && m_B_LineStyle == RHS.BottomLineStyle &&
  303. m_L_Colour == RHS.LeftLineColour && m_T_Colour == RHS.TopLineColour &&
  304. m_R_Colour == RHS.RightLineColour && m_B_Colour == RHS.BottomLineColour &&
  305. m_Bdr_Colour == RHS.BorderColour && m_Bdr_LineStyle == RHS.BorderLineStyle &&
  306. m_fillPattern == RHS.Pattern && m_fillForeColour == RHS.PatternForeColour &&
  307. m_fillBackColour == RHS.PatternBackColour && m_D_Colour == RHS.DiagLineColour &&
  308. m_D_LineStyle == RHS.DiagLineStyle && m_D_TLBR == RHS.DiagLineTopLeftToBottomRight &&
  309. m_D_TRBL == RHS.DiagLineTopRightToBottomLeft)
  310. return true;
  311. else
  312. return false;
  313. }
  314. public EnumFill Pattern
  315. {
  316. set
  317. {
  318. m_fillPattern = value;
  319. m_xf.FillPattern = (byte)value;
  320. m_styleUpdated = true;
  321. }
  322. get { return m_fillPattern; }
  323. }
  324. public EnumColours PatternBackColour
  325. {
  326. set
  327. {
  328. m_fillBackColour = value;
  329. m_xf.PatternBackColour = (byte)value;
  330. m_styleUpdated = true;
  331. }
  332. get { return m_fillBackColour; }
  333. }
  334. public EnumColours PatternForeColour
  335. {
  336. set
  337. {
  338. m_fillForeColour = value;
  339. m_xf.PatternForeColour = (byte)value;
  340. m_styleUpdated = true;
  341. }
  342. get { return m_fillForeColour; }
  343. }
  344. public EnumColours RightLineColour
  345. {
  346. set
  347. {
  348. m_R_Colour = value;
  349. m_xf.RightLineColour = (byte)value;
  350. m_styleUpdated = true;
  351. }
  352. get { return m_R_Colour; }
  353. }
  354. public EnumLineStyle RightLineStyle
  355. {
  356. set
  357. {
  358. m_R_LineStyle = value;
  359. m_xf.RightLineStyle = (byte)value;
  360. m_styleUpdated = true;
  361. if (m_R_LineStyle != EnumLineStyle.None)
  362. if (m_R_Colour == 0)
  363. m_R_Colour = EnumColours.SkyBlue;
  364. }
  365. get { return m_R_LineStyle; }
  366. }
  367. private bool FindFontIndex(ExcelFont ef)
  368. {
  369. if (ef.Match(m_font))
  370. return true;
  371. else
  372. return false;
  373. }
  374. private bool FindFormatIndex(ExcelFormat ef)
  375. {
  376. if (ef.Match(m_format))
  377. return true;
  378. else
  379. return false;
  380. }
  381. private bool FindStyleIndex(ExcelCellStyle ef)
  382. {
  383. if (ef.Match(this))
  384. return true;
  385. else
  386. return false;
  387. }
  388. /// <summary>
  389. /// check if the font used in this style exists
  390. /// if not create one and place the index in the cell style
  391. /// </summary>
  392. /// <returns> </returns>
  393. internal ushort GetXFIndex()
  394. {
  395. int count;
  396. if (m_fontIndex == 0)
  397. {
  398. count = pWorkbook.Fonts.FindIndex(FindFontIndex);
  399. if (count != -1)
  400. {
  401. if (count >= 4)
  402. count++;
  403. this.FontIndex = (ushort)count;
  404. }
  405. else
  406. this.FontIndex = pWorkbook.CreateNewFont(m_font);
  407. }
  408. if (m_formatIndex == 0 && this.Format.FormatString.Length != 0)
  409. {
  410. ExcelFormat ef = pWorkbook.Formats.Find(FindFormatIndex);
  411. if (ef != null)
  412. this.FormatIndex = ef.index;
  413. else
  414. this.FormatIndex = pWorkbook.CreateNewFormat(m_format);
  415. }
  416. if (m_styleIndex == -1)
  417. {
  418. count = pWorkbook.Styles.FindIndex(FindStyleIndex);
  419. if (count != -1)
  420. m_styleIndex = (ushort)count;
  421. else
  422. m_styleIndex = pWorkbook.CreateNewStyle(this);
  423. }
  424. return (ushort)m_styleIndex;
  425. }
  426. public bool StackText
  427. {
  428. set
  429. {
  430. m_stackText = value;
  431. m_xf.StackText = value;
  432. m_styleUpdated = true;
  433. }
  434. get {return m_stackText; }
  435. }
  436. public EnumType StyleType
  437. {
  438. set
  439. {
  440. m_styleType = value;
  441. m_xf.StyleType = (byte)value;
  442. m_styleUpdated = true;
  443. }
  444. get { return m_styleType; }
  445. }
  446. public bool StyleUpdated
  447. {
  448. // Check for updates to the font or format
  449. get
  450. {
  451. //m_styleUpdated = false;
  452. if (m_font.FontUpdated || m_format.Formatupdated)
  453. m_styleUpdated = true;
  454. return m_styleUpdated;
  455. }
  456. }
  457. public byte TextRotationAngle
  458. {
  459. set
  460. {
  461. if (value > 180)
  462. return;
  463. m_RotatAngle = value;
  464. m_xf.TextRoationAngle = value;
  465. m_styleUpdated = true;
  466. }
  467. get { return m_RotatAngle; }
  468. }
  469. public EnumLineStyle TopLineStyle
  470. {
  471. set
  472. {
  473. m_T_LineStyle = value;
  474. m_xf.TopLineStyle = (byte)value;
  475. m_styleUpdated = true;
  476. if (m_T_LineStyle != EnumLineStyle.None)
  477. if (m_T_Colour == 0)
  478. m_T_Colour = EnumColours.SkyBlue;
  479. }
  480. get { return m_T_LineStyle; }
  481. }
  482. public EnumColours TopLineColour
  483. {
  484. set
  485. {
  486. m_T_Colour = value;
  487. m_xf.TopLineColour = (byte)value;
  488. m_styleUpdated = true;
  489. }
  490. get { return m_T_Colour; }
  491. }
  492. internal byte UseParentStyleOptions
  493. {
  494. set
  495. {
  496. m_usedAttribute = (EnumUsedAttrib)value;
  497. m_xf.UsedAttribute = value;
  498. m_styleUpdated = true;
  499. }
  500. }
  501. public EnumVerticalAlignment VerticalAlignment
  502. {
  503. set
  504. {
  505. m_verAlign = value;
  506. m_xf.VerticalAlignment = (byte)value;
  507. m_styleUpdated = true;
  508. }
  509. get { return m_verAlign; }
  510. }
  511. public bool WrapText
  512. {
  513. set
  514. {
  515. m_wrapText = value;
  516. m_xf.WrapText = value;
  517. m_styleUpdated = true;
  518. }
  519. get { return m_wrapText; }
  520. }
  521. internal byte[] WriteRecord()
  522. {
  523. return m_xf.GetByte();
  524. }
  525. #region IDisposable ³ÉÔ±
  526. public void Dispose()
  527. {
  528. m_xf = null;
  529. m_font.Dispose();
  530. m_font = null;
  531. m_format.Dispose();
  532. m_format = null;
  533. }
  534. #endregion
  535. }
  536. }