ExcelWorksheet.cs 30 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. using System.Runtime.InteropServices;
  5. using System.IO;
  6. using Biff8Excel.COM;
  7. namespace Biff8Excel.Excel
  8. {
  9. public class ExcelWorksheet : IDisposable
  10. {
  11. ExcelWorkbook pWorkbook; // pointer to the parent Workbook (soft reference)
  12. // This is the Disk representtion of the worksheet
  13. // it is passed to the workbook when saving
  14. byte[] m_diskbuffer;
  15. uint m_diskbufferSize;
  16. // Row Variables
  17. ExcelRowLinkDictionary marrRows; // single link of all the rows, not empty
  18. ushort mTotalRowBlocks;
  19. ushort mFirstUsedRow;
  20. ushort mLastUsedRow;
  21. //bool bFirstUsedRow;
  22. //bool bLastUsedRow;
  23. // records
  24. ExcelPrintSetup recPrintSetup;
  25. ExcelHeader recHeader;
  26. ExcelFooter recFooter;
  27. Index recIndex;
  28. DefColWidth recDefCol;
  29. DBCell[] recDBCells;
  30. MergedCells recMergedCells;
  31. ColInfo[] recColumns;
  32. SheetProtection recPassword;
  33. Records.Dimensions recDimensions;
  34. Records.Windows2 recWindow2;
  35. Records.Calcmode recCalcmode;
  36. ushort mSheetNumber; // Sheet Number (index)
  37. string mSheetName; // sheet name;
  38. EnumWindow2Options rec2WindowOptions;
  39. EnumColours mGridlineColour; // grid line colour;
  40. string m_password=""; // sheet password
  41. ExcelBinaryWriter bw; // Writes the sheet to a byte stream;
  42. internal ushort TotalRows
  43. {
  44. get { return (ushort)marrRows.Count; }
  45. }
  46. //internal ushort LastUsedRow
  47. //{
  48. // get { return mLastUsedRow; }
  49. //}
  50. internal ExcelRowLinkDictionary Rows
  51. {
  52. get { return marrRows; }
  53. }
  54. //private void WriteRowBlocks(COM.Stream bbw)
  55. private void WriteRowBlocks()
  56. {
  57. DBCell dbCell;
  58. ExcelCell oCell;
  59. byte[] buffer;
  60. int[] DBCellOffsets = new int[0];
  61. //List<int> DBCellOffsets = new List<int>();
  62. uint firstRowOffset;
  63. int usedrows = 0;
  64. ExcelBinaryWriter cellsbuffer = new ExcelBinaryWriter();
  65. if (mTotalRowBlocks == 0)
  66. return;
  67. Array.Resize<DBCell>(ref recDBCells, mTotalRowBlocks);
  68. int preRowsKey = -1;
  69. int lRowBlock = 0;
  70. int currentBlock = 0;
  71. firstRowOffset = (uint)bw.Position;
  72. // Loop through each ExcelRowsLink
  73. foreach (KeyValuePair<ushort, ExcelCellLinkDictionary> rows in marrRows)
  74. {
  75. usedrows++;
  76. lRowBlock = (rows.Key) / 32;
  77. if (currentBlock < lRowBlock)
  78. {
  79. preRowsKey = rows.Key;
  80. bw.Write(cellsbuffer.Stream);
  81. // Write the DB Cell record for the Block
  82. dbCell = new DBCell();
  83. dbCell.RowOffset = (uint)(bw.Position - firstRowOffset); // relative offset to the DBCell offset
  84. dbCell.StreamOffset = (int)bw.Position;
  85. // 前32行中有数据
  86. if (cellsbuffer.Position > 0)
  87. {
  88. Array.Resize<int>(ref DBCellOffsets, usedrows);
  89. dbCell.CellOffsets = DBCellOffsets;
  90. buffer = dbCell.WriteRecord();
  91. bw.Write(buffer);
  92. usedrows = 0;
  93. }
  94. recDBCells[currentBlock] = dbCell;
  95. //First Pass, Write any Used Rows in the Block
  96. firstRowOffset = (uint)bw.Position;
  97. cellsbuffer = new ExcelBinaryWriter();
  98. currentBlock++;
  99. //如还是小说明下一区段的数据为空,循环下去
  100. while (currentBlock < lRowBlock)
  101. {
  102. preRowsKey = rows.Key;
  103. //// Write the DB Cell record for the Block
  104. dbCell = new DBCell();
  105. dbCell.RowOffset = (uint)(bw.Position - firstRowOffset); // relative offset to the DBCell offset
  106. dbCell.StreamOffset = (int)bw.Position;
  107. recDBCells[currentBlock] = dbCell;
  108. //First Pass, Write any Used Rows in the Block
  109. firstRowOffset = (uint)bw.Position;
  110. currentBlock++;
  111. }
  112. }
  113. if (rows.Value.Style.TopLineStyle == EnumLineStyle.Double || rows.Value.Style.TopLineStyle == EnumLineStyle.Thick)
  114. rows.Value.AdditionalSpaceAbove = true;
  115. if (rows.Value.Style.BottomLineStyle == EnumLineStyle.Double || rows.Value.Style.BottomLineStyle == EnumLineStyle.Thick)
  116. rows.Value.AdditionalSpaceBelow = true;
  117. //rows.Value.StreamPosition = (int)bw.Position;
  118. //rows.Value.RowBlock = (ushort)(lRowBlock + 1);
  119. foreach (KeyValuePair<ushort, ExcelCell> cells in rows.Value)
  120. {
  121. oCell = cells.Value;
  122. if (oCell.HasThickBorderAbove)
  123. rows.Value.AdditionalSpaceAbove = true;
  124. if (oCell.HasThickBorderBelow)
  125. rows.Value.AdditionalSpaceBelow = true;
  126. // If this is a Label,
  127. // get the index into the Shared String Table for this Labels
  128. if (oCell.CellType == Globals.CELL_TYPE_LABEL)
  129. oCell.SSTindex = this.GetSSTIndex(oCell);
  130. if ( oCell.StyleIndex < 0)
  131. {
  132. // row style takes precedence over the columns
  133. if (rows.Value.StyleIndex == 0xF) // default index
  134. oCell.StyleIndex = this.GetColumnStyleIndex(cells.Key); // get the columns index (may be &HF as well)
  135. else
  136. oCell.StyleIndex = rows.Value.StyleIndex; // uses the rows style
  137. }
  138. // Write the Cell to the stream
  139. buffer = oCell.WriteCell();
  140. cellsbuffer.Write(buffer);
  141. //bw.WriteBytes(buffer);
  142. }
  143. buffer = rows.Value.WriteRecord();
  144. bw.Write(buffer);
  145. }
  146. // 循环结束有未处理的行数据则把这些行数据加在最后
  147. if ( preRowsKey <= marrRows.LastUsedRow )
  148. //if ( preRowsKey <= marrRows.tail.Index )
  149. {
  150. //First Pass, Write any Used Rows in the Block
  151. bw.Write(cellsbuffer.Stream);
  152. // Write the DB Cell record for the Block
  153. dbCell = new DBCell();
  154. dbCell.RowOffset = (uint)(bw.Position - firstRowOffset); // relative offset to the DBCell offset
  155. //dbCell.StreamOffset = (int)bw.Position;
  156. // calculete the relative position from the db cell record
  157. // to the first cell record of each row ??????
  158. // 前32行中有数据
  159. if (cellsbuffer.Position > 0)
  160. {
  161. Array.Resize<int>(ref DBCellOffsets, usedrows);
  162. dbCell.CellOffsets = DBCellOffsets;
  163. buffer = dbCell.WriteRecord();
  164. bw.Write(buffer);
  165. }
  166. //cellsbuffer.clear();
  167. recDBCells[currentBlock] = dbCell;
  168. }
  169. }
  170. /// <summary>
  171. /// 以byte数组形式生成Sheet信息
  172. /// </summary>
  173. internal void CreateSheetBuffer()
  174. {
  175. byte[] buffer;
  176. Records.BOF obj; // using object for the records, so we only need to dim oen variable
  177. string s;
  178. int y;
  179. // Bof Record
  180. obj = new Biff8Excel.Records.BOF();
  181. obj.DataType = Biff8Excel.Records.EnumBofTypes.bofWorkSheet;
  182. buffer = obj.GetByte();
  183. bw.Write(buffer);
  184. // ''''''''''''''''''''''''''''''''''''''''
  185. // ''' Index Record
  186. // ''''''''''''''''''''''''''''''''''''''''
  187. // ''' This record stores the Absolute Stream Offsets of the DB Records
  188. // ''' As they are not written until the later in the Stream we need to
  189. // ''' reserve space in the stream for these offsets which we will add later
  190. // ''''''''''''''''''''''''''''''''''''''''
  191. uint[] DBCellOffsets;
  192. y = this.CalculateRowBlocks();
  193. if (y > 0)
  194. {
  195. DBCellOffsets = new uint[y];
  196. recIndex = new Index();
  197. recIndex.StreamOffset = (uint)bw.Position; // Save the Position of this record in the stream
  198. recIndex.FirstRowUsed = mFirstUsedRow;
  199. recIndex.LastRowUsed = mLastUsedRow;
  200. recIndex.DefColumnRecordOffset = 0;
  201. recIndex.DBCellOffsets = DBCellOffsets;
  202. buffer = recIndex.WriteRecord();
  203. bw.Write(buffer);
  204. }
  205. // Calc Mode (always set to Automatic)
  206. buffer = recCalcmode.GetByte();
  207. bw.Write(buffer);
  208. // Print Headers
  209. buffer = recPrintSetup.WriteRecord_PRINTHEADER();
  210. bw.Write(buffer);
  211. // Print Grid
  212. buffer = recPrintSetup.WriteRecord_PRINTGRID();
  213. bw.Write(buffer);
  214. // WS BOOL
  215. buffer = recPrintSetup.WriteRecord_WSBOOL();
  216. bw.Write(buffer);
  217. // Header
  218. buffer = recHeader.WriteRecord();
  219. bw.Write(buffer);
  220. // Footer;
  221. buffer = recFooter.WriteRecord();
  222. bw.Write(buffer);
  223. // HCenter
  224. buffer = recPrintSetup.WriteRecord_HCENTER();
  225. bw.Write(buffer);
  226. // VCenter
  227. buffer = recPrintSetup.Writerecord_VCENTER();
  228. bw.Write(buffer);
  229. // Left Margin
  230. buffer = recPrintSetup.Writerecord_LMARGIN();
  231. bw.Write(buffer);
  232. // Right Margin
  233. buffer = recPrintSetup.Writerecord_RMARGIN();
  234. bw.Write(buffer);
  235. // Top Margin
  236. buffer = recPrintSetup.Writerecord_TMARGIN();
  237. bw.Write(buffer);
  238. // Bottom Margin
  239. buffer = recPrintSetup.Writerecord_BMARGIN();
  240. bw.Write(buffer);
  241. // Print Setup
  242. buffer = recPrintSetup.WriteRecord_SETUP();
  243. bw.Write(buffer);
  244. // Password Protection
  245. if (m_password.Length > 0)
  246. {
  247. recPassword.ProtectSheet(m_password);
  248. buffer = recPassword.WriteRecord();
  249. bw.Write(buffer);
  250. }
  251. // DefColWidth
  252. recDefCol = new DefColWidth();
  253. recDefCol.StreamOffset = (int)bw.Position;
  254. buffer = recDefCol.WriteRecord();
  255. bw.Write(buffer);
  256. // ColInfos
  257. if (recColumns != null)
  258. {
  259. y = recColumns.Length;
  260. for (int i = 0; i < y; i++)
  261. {
  262. buffer = recColumns[i].WriteRecord();
  263. bw.Write(buffer);
  264. }
  265. }
  266. // Dimensions
  267. recDimensions.FirstRow = mFirstUsedRow;
  268. recDimensions.LastRow = (uint)(mLastUsedRow +1);
  269. buffer = recDimensions.GetByte();
  270. bw.Write(buffer);
  271. // Row Block (ouch);
  272. // Rows, Cells and DBCells
  273. //this.WriteRowBlocks(bw);
  274. this.WriteRowBlocks();
  275. // Window2
  276. recWindow2.OptionalFlags = (ushort)rec2WindowOptions;
  277. buffer = recWindow2.GetByte();
  278. bw.Write(buffer);
  279. // Merged Cells
  280. if (recMergedCells.Total > 0)
  281. {
  282. buffer = recMergedCells.WriteRecord();
  283. bw.Write(buffer);
  284. }
  285. // EOF
  286. s = "0A000000";
  287. bw.Write(Globals.WriteBytes(s));
  288. m_diskbufferSize = (uint)bw.Length;
  289. }
  290. private uint GetSSTIndex(Biff8Excel.Interfaces.ICell newCell)
  291. {
  292. ExcelSst sst;
  293. try
  294. {
  295. sst = Workbook.SharedStringTable;
  296. return sst.AddString(newCell.ResolvedValue.ToString());
  297. }
  298. finally
  299. {
  300. sst = null;
  301. }
  302. }
  303. internal void UpdateAbsoluteOffsets(uint lOffset)
  304. {
  305. try
  306. {
  307. //byte[] streambuffer = bw.Stream;
  308. uint[] dbCells = null;
  309. if (recIndex == null)
  310. {
  311. //workBookbw.WriteBytes(streambuffer);
  312. m_diskbuffer = bw.Stream;
  313. return;
  314. }
  315. recIndex.DefColumnRecordOffset = (uint)(recDefCol.StreamOffset + lOffset);
  316. Array.Resize<uint>(ref dbCells, recIndex.DBCellOffsets.Length);
  317. for (int i = 0; i < recIndex.DBCellOffsets.Length; i++)
  318. {
  319. dbCells[i] = (uint)recDBCells[i].StreamOffset + lOffset;
  320. }
  321. recIndex.DBCellOffsets = dbCells;
  322. byte[] buffer = recIndex.WriteRecord();
  323. bw.Position = (int)recIndex.StreamOffset;
  324. bw.Write(buffer);
  325. m_diskbuffer = bw.Stream;
  326. //buffer.CopyTo(streambuffer, recIndex.StreamOffset);
  327. //workBookbw.WriteBytes(streambuffer);
  328. }
  329. finally
  330. {
  331. //bw.clear();
  332. bw = null;
  333. }
  334. }
  335. public ExcelCellLinkDictionary GetRow(ushort rowNumber)
  336. {
  337. //zero based row numbers;
  338. rowNumber--;
  339. if (rowNumber < 0) rowNumber = 0;
  340. ExcelCellLinkDictionary oRow;
  341. if (marrRows.TryGetValue(rowNumber, out oRow) == true)
  342. return oRow;
  343. oRow = new ExcelCellLinkDictionary(pWorkbook);
  344. oRow.rowNumber = rowNumber;
  345. marrRows.Add(rowNumber, oRow);
  346. //oRow.sheetNumber = mSheetNumber;
  347. return oRow;
  348. }
  349. public void SetColumnStyle(ushort iFromColumn, ushort iToColumn)
  350. {
  351. SetColumnStyle(iFromColumn, iToColumn, 64, null);
  352. }
  353. public void SetColumnStyle(ushort iFromColumn, ushort iToColumn, ushort iPixelWidth)
  354. {
  355. SetColumnStyle(iFromColumn, iToColumn, iPixelWidth, null);
  356. }
  357. public void SetColumnStyle(ushort iFromColumn, ushort iToColumn, ushort iPixelWidth, ExcelCellStyle oStyle)
  358. {
  359. int ub;
  360. ushort idx;
  361. ColInfo cInfo;
  362. try
  363. {
  364. if (recColumns != null)
  365. {
  366. ub = (int)recColumns.Length + 1;
  367. Array.Resize<ColInfo>(ref recColumns, ub);
  368. }
  369. else
  370. {
  371. recColumns = new ColInfo[1];
  372. }
  373. if (oStyle != null)
  374. //idx = this.GetXFIndex(oStyle);
  375. idx = (ushort)oStyle.GetXFIndex();
  376. else
  377. idx = 0xA; // default cell style;
  378. cInfo = new ColInfo();
  379. cInfo.SetColumnStyle(iFromColumn, iToColumn, iPixelWidth, idx);
  380. recColumns[recColumns.Length - 1] = cInfo;
  381. }
  382. catch
  383. {
  384. throw;
  385. }
  386. }
  387. internal ushort GetColumnStyleIndex(ushort iColumn)
  388. {
  389. ushort result = 0xF; // default style
  390. //int ub = 0;
  391. //try
  392. //{
  393. // if ( recColumns != null)
  394. // ub = (int)(recColumns.Length - 1);
  395. //}
  396. //catch
  397. //{
  398. // return 0;
  399. //}
  400. if (recColumns == null)
  401. return 0;
  402. for (int i = 0; i < recColumns.Length; i++)
  403. {
  404. if (iColumn >= recColumns[i].FromColumn && iColumn <= recColumns[i].ToColumn)
  405. return recColumns[i].StyleIndex;
  406. }
  407. return result;
  408. }
  409. /// <summary>
  410. /// 合并单元格
  411. /// </summary>
  412. /// <param name="iFirstColumn">启始列号</param>
  413. /// <param name="iFirstRow">启始行号</param>
  414. /// <param name="iLastColumn">终止列号</param>
  415. /// <param name="iLastRow">终止行号</param>
  416. public void MergeCels(ushort iFirstColumn, ushort iFirstRow, ushort iLastColumn, ushort iLastRow)
  417. {
  418. recMergedCells.AddMergedCells(iFirstRow, iLastRow, iFirstColumn, iLastColumn);
  419. }
  420. private ushort CalculateRowBlocks()
  421. {
  422. mTotalRowBlocks = 0;
  423. if ( marrRows.Count != 0)
  424. {
  425. mTotalRowBlocks = (ushort)((marrRows.LastUsedRow + 1) / 32);
  426. if ( ( marrRows.LastUsedRow + 1) % 32 > 0)
  427. mTotalRowBlocks++;
  428. }
  429. return mTotalRowBlocks;
  430. }
  431. public string SheetName
  432. {
  433. set { mSheetName = value; }
  434. get { return mSheetName; }
  435. }
  436. public EnumColours GridlineColour
  437. {
  438. set
  439. {
  440. mGridlineColour = value;
  441. recWindow2.GridLineColour = (ushort)value;
  442. }
  443. }
  444. public bool ShowFormulas
  445. {
  446. set
  447. {
  448. if (value)
  449. rec2WindowOptions = rec2WindowOptions | EnumWindow2Options.ShowFormulas;
  450. else
  451. rec2WindowOptions = rec2WindowOptions & (~EnumWindow2Options.ShowFormulas);
  452. }
  453. }
  454. public bool Visible
  455. {
  456. set
  457. {
  458. if (value)
  459. rec2WindowOptions = rec2WindowOptions | EnumWindow2Options.SheetVisible;
  460. else
  461. rec2WindowOptions = rec2WindowOptions & (~EnumWindow2Options.SheetVisible);
  462. }
  463. }
  464. public bool GridLines
  465. {
  466. set
  467. {
  468. if (value)
  469. rec2WindowOptions = rec2WindowOptions | EnumWindow2Options.ShowGridLines;
  470. else
  471. rec2WindowOptions = rec2WindowOptions & (~EnumWindow2Options.ShowGridLines);
  472. }
  473. }
  474. public bool SheetHeaders
  475. {
  476. set
  477. {
  478. if (value)
  479. rec2WindowOptions = rec2WindowOptions | EnumWindow2Options.ShowSheetHeader;
  480. else
  481. rec2WindowOptions = rec2WindowOptions & (~EnumWindow2Options.ShowSheetHeader);
  482. }
  483. }
  484. public bool Selected
  485. {
  486. set
  487. {
  488. if (value)
  489. rec2WindowOptions = rec2WindowOptions | EnumWindow2Options.SheetSelected;
  490. else
  491. rec2WindowOptions = rec2WindowOptions & (~EnumWindow2Options.SheetSelected);
  492. }
  493. }
  494. public bool ShowZeroValues
  495. {
  496. set
  497. {
  498. if (value)
  499. rec2WindowOptions = rec2WindowOptions | EnumWindow2Options.ShowZeroValues;
  500. else
  501. rec2WindowOptions = rec2WindowOptions & (~EnumWindow2Options.ShowZeroValues);
  502. }
  503. }
  504. public ExcelHeader Header
  505. {
  506. get { return recHeader; }
  507. set { recHeader = value; }
  508. }
  509. public ExcelFooter Footer
  510. {
  511. get { return recFooter; }
  512. set { recFooter = value; }
  513. }
  514. public ExcelPrintSetup PrintSetup
  515. {
  516. get { return recPrintSetup; }
  517. set { recPrintSetup = value; }
  518. }
  519. internal string password
  520. {
  521. set { m_password = value; }
  522. }
  523. internal uint SizeOnDisk
  524. {
  525. get { return m_diskbufferSize; }
  526. }
  527. internal byte[] DiskBuffer
  528. {
  529. get { return m_diskbuffer; }
  530. }
  531. internal ushort sheetNumber
  532. {
  533. set { mSheetNumber = value; }
  534. get { return mSheetNumber; }
  535. }
  536. public void SumRows(ushort columnFrom, ushort columnTo, ushort sumFrom, ushort sumTo, ushort rowNumber)
  537. {
  538. SumRows(columnFrom, columnTo, sumFrom, sumTo, rowNumber, null);
  539. }
  540. public void SumRows(ushort columnFrom, ushort columnTo, ushort sumFrom, ushort sumTo, ushort rowNumber, ExcelCellStyle oCellStyle)
  541. {
  542. AddSummaryRow("SUM", columnFrom, columnTo, sumFrom, sumTo, rowNumber, oCellStyle);
  543. }
  544. public void AverageRows(ushort columnFrom, ushort columnTo, ushort sumFrom, ushort sumTo, ushort rowNumber)
  545. {
  546. SumRows(columnFrom, columnTo, sumFrom, sumTo, rowNumber, null);
  547. }
  548. public void AverageRows(ushort columnFrom, ushort columnTo, ushort sumFrom, ushort sumTo, ushort rowNumber, ExcelCellStyle oCellStyle)
  549. {
  550. AddSummaryRow("AVERAGE", columnFrom, columnTo, sumFrom, sumTo, rowNumber, oCellStyle);
  551. }
  552. public void CountRows(ushort columnFrom, ushort columnTo, ushort sumFrom, ushort sumTo, ushort rowNumber)
  553. {
  554. SumRows(columnFrom, columnTo, sumFrom, sumTo, rowNumber, null);
  555. }
  556. public void CountRows(ushort columnFrom, ushort columnTo, ushort sumFrom, ushort sumTo, ushort rowNumber, ExcelCellStyle oCellStyle)
  557. {
  558. AddSummaryRow("COUNT", columnFrom, columnTo, sumFrom, sumTo, rowNumber, oCellStyle);
  559. }
  560. private void AddSummaryRow(string sType, ushort columnFrom, ushort columnTo, ushort sumFrom, ushort sumTo, ushort rowNumber)
  561. {
  562. AddSummaryRow(sType, columnFrom, columnTo, sumFrom, sumTo, rowNumber, null);
  563. }
  564. private void AddSummaryRow(string sType, ushort columnFrom, ushort columnTo, ushort sumFrom,
  565. ushort sumTo, ushort rowNumber, ExcelCellStyle oCellStyle)
  566. {
  567. ExcelCell oCell;
  568. //ushort Row;
  569. string colName;
  570. string s;
  571. for (ushort column = columnFrom; column <= columnTo; column++)
  572. {
  573. colName = Globals.ConvertColNumToString(column);
  574. s = "=" + sType + "(" + colName + sumFrom.ToString() + ":" + colName + sumTo.ToString() + ")";
  575. oCell = AddCell(column, rowNumber, s, oCellStyle);
  576. oCell.Workbook = Workbook;
  577. }
  578. oCell = null;
  579. }
  580. /// <summary>
  581. /// 在Worksheet中加入单元格
  582. /// </summary>
  583. /// <param name="columnNumber">列号</param>
  584. /// <param name="rowNumber">行号</param>
  585. /// <returns>加入的单元格</returns>
  586. public ExcelCell AddCell(ushort columnNumber, ushort rowNumber)
  587. {
  588. return AddCell(columnNumber, rowNumber, null, null);
  589. }
  590. /// <summary>
  591. /// 在Worksheet中加入单元格
  592. /// </summary>
  593. /// <param name="columnNumber">列号</param>
  594. /// <param name="rowNumber">行号</param>
  595. /// <param name="vValue">单元格的值</param>
  596. /// <returns>加入的单元格</returns>
  597. public ExcelCell AddCell(ushort columnNumber, ushort rowNumber, object vValue)
  598. {
  599. return AddCell(columnNumber, rowNumber, vValue, null);
  600. }
  601. //public ExcelCell AddCell(ushort columnNumber, ushort rowNumber, ExcelCellStyle oCellStyle)
  602. //{
  603. // return AddCell(columnNumber, rowNumber, null, oCellStyle);
  604. //}
  605. /// <summary>
  606. /// 在Worksheet中加入单元格
  607. /// </summary>
  608. /// <param name="columnNumber">列号</param>
  609. /// <param name="rowNumber">行号</param>
  610. /// <param name="vValue">单元格的值</param>
  611. /// <param name="oCellStyle">单元格的样式</param>
  612. /// <returns>加入的单元格</returns>
  613. public ExcelCell AddCell(ushort columnNumber, ushort rowNumber, object vValue, ExcelCellStyle oCellStyle)
  614. {
  615. //ExcelRow oRow;
  616. ExcelCell oCell;
  617. if (columnNumber > 256)
  618. throw new Biff8ExcelException("超出列的最大值");
  619. // Row and Columns are zero based
  620. rowNumber--;
  621. columnNumber--;
  622. if (rowNumber < 0) rowNumber = 0;
  623. if (columnNumber < 0) columnNumber = 0;
  624. //// create the new cell
  625. //oCell = new ExcelCell(pWorkbook);
  626. oCell = pWorkbook.CreateCell();
  627. oCell.Workbook = Workbook;
  628. oCell.sheetNumber = mSheetNumber;
  629. oCell.Row = rowNumber;
  630. oCell.Column = columnNumber;
  631. if (vValue != null)
  632. oCell.Value = vValue;
  633. if (oCellStyle != null)
  634. {
  635. oCell.Style = oCellStyle;
  636. oCell.StyleIndex = oCellStyle.GetXFIndex();
  637. }
  638. marrRows.AddCell(rowNumber, columnNumber, oCell);
  639. return oCell;
  640. }
  641. /// <summary>
  642. /// 加入多个单元格(一行内)
  643. /// </summary>
  644. /// <param name="columnFrom">起始列号</param>
  645. /// <param name="columnTo">终止列号</param>
  646. /// <param name="rowNumber">行号</param>
  647. /// <param name="oCellStyle">样式</param>
  648. /// <param name="vValues">值数组(数组长度为 columnFrom - columnTo 多于部分被忽略)</param>
  649. public void AddCells(ushort columnFrom, ushort columnTo, ushort rowNumber, ExcelCellStyle oCellStyle, params object[] vValues)
  650. {
  651. ushort Count = 0;
  652. object vValue;
  653. try
  654. {
  655. for (ushort columnNumber = columnFrom; columnNumber <= columnTo; columnNumber++)
  656. {
  657. if (vValues.Length > Count)
  658. vValue = vValues[Count];
  659. else
  660. vValue = null;
  661. AddCell(columnNumber, rowNumber, vValue, oCellStyle);
  662. Count++;
  663. }
  664. }
  665. catch
  666. {
  667. throw;
  668. }
  669. }
  670. /// <summary>
  671. /// 得到已存在的单元格(如单元格不存在则新增)
  672. /// </summary>
  673. /// <param name="columnNumber">列号</param>
  674. /// <param name="rowNumber">行号</param>
  675. /// <returns>得到的单元格</returns>
  676. public ExcelCell GetCell(ushort columnNumber, ushort rowNumber)
  677. {
  678. // Row and Columns are zero based;
  679. rowNumber--;
  680. columnNumber--;
  681. if (rowNumber < 0) rowNumber = 0;
  682. if (columnNumber < 0) columnNumber = 0;
  683. ExcelCellLinkDictionary cl;
  684. ExcelCell oCell;
  685. // get the containing row object
  686. if ( !marrRows.TryGetValue(rowNumber, out cl))
  687. {
  688. cl = new ExcelCellLinkDictionary(pWorkbook);
  689. }
  690. // get the containing cell object
  691. if (!cl.TryGetValue(columnNumber, out oCell))
  692. {
  693. //oCell = new ExcelCell(pWorkbook);
  694. oCell = pWorkbook.CreateCell();
  695. oCell.Workbook = Workbook;
  696. oCell.sheetNumber = mSheetNumber;
  697. oCell.Row = rowNumber;
  698. oCell.Column = columnNumber;
  699. cl.Add(columnNumber, oCell);
  700. }
  701. marrRows.AddCell(rowNumber, columnNumber, oCell);
  702. return oCell;
  703. }
  704. internal ExcelWorkbook Workbook
  705. {
  706. get{return pWorkbook; }
  707. set{pWorkbook = value;}
  708. }
  709. internal ExcelWorksheet(ExcelWorkbook pWorkbook)
  710. {
  711. marrRows = new ExcelRowLinkDictionary(pWorkbook);
  712. this.pWorkbook = pWorkbook;
  713. recWindow2 = new Biff8Excel.Records.Windows2();
  714. recDimensions = new Biff8Excel.Records.Dimensions();
  715. recCalcmode = new Biff8Excel.Records.Calcmode();
  716. recMergedCells = new MergedCells();
  717. recPrintSetup = new ExcelPrintSetup();
  718. recHeader = new ExcelHeader();
  719. recFooter = new ExcelFooter();
  720. recPassword = new SheetProtection();
  721. bw = new ExcelBinaryWriter();
  722. // default options for each sheet
  723. this.GridLines = true;
  724. SheetHeaders = true;
  725. Visible = true;
  726. mGridlineColour = EnumColours.SystemBorder;
  727. rec2WindowOptions = EnumWindow2Options.ShowGridLines | EnumWindow2Options.ShowZeroValues | EnumWindow2Options.ShowSheetHeader;
  728. recWindow2.OptionalFlags = (ushort)rec2WindowOptions;
  729. recWindow2.GridLineColour = (ushort)mGridlineColour;
  730. }
  731. #region IDisposable 成员
  732. public void Dispose()
  733. {
  734. recIndex.Dispose();
  735. recIndex = null;
  736. recWindow2 = null;
  737. recCalcmode = null;
  738. recDimensions = null;
  739. recMergedCells.Dispose();
  740. recMergedCells = null;
  741. recPrintSetup.Dispose();
  742. recPrintSetup = null;
  743. recPassword.Dispose();
  744. recPassword = null;
  745. recHeader.Dispose();
  746. recHeader = null;
  747. recFooter = null;
  748. bw.Close();
  749. bw = null;
  750. marrRows = null;
  751. recDefCol.Dispose();
  752. recDefCol = null;
  753. recFooter.Dispose();
  754. recFooter = null;
  755. }
  756. #endregion
  757. }
  758. }