ExcelCell.cs 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. using Biff8Excel.Formulas;
  5. using Biff8Excel.Interfaces;
  6. namespace Biff8Excel.Excel
  7. {
  8. public class ExcelCell : IDisposable, Biff8Excel.Interfaces.ICell
  9. {
  10. double tmp;
  11. internal ExcelWorkbook pWorkbook; // Pointer to the Workbook (soft reference)
  12. ExcelCellStyle m_cellstyle;
  13. Biff8Excel.Records.Blank m_blank;
  14. Biff8Excel.Records.LabelSST m_label;
  15. Biff8Excel.Records.RK m_integer;
  16. Biff8Excel.Records.Number m_float;
  17. Biff8Excel.Formulas.Formula m_formula;
  18. int m_styleIndex;
  19. ushort m_row;
  20. ushort m_col;
  21. ushort m_sheetNumber;
  22. object m_value;
  23. object m_resolvedValue; // returns the value of numeric and formula cells
  24. uint m_SSTIndex;
  25. //internal double Calculate(ExcelCellLink sheetCells)
  26. internal double Calculate(ExcelCellDictionary sheetCells)
  27. {
  28. if (m_value.ToString().Length == 0)
  29. return 0;
  30. //CellCollection resutl;
  31. //Dictionary<string, ExcelCell> result;
  32. if (m_formula == null)
  33. m_formula = new Formula();
  34. m_formula.ExternSheet = Workbook.ExterSheet;
  35. m_formula.FormulaString = m_value.ToString();
  36. m_formula.ThisSheetNumber = m_sheetNumber;
  37. m_formula.SheetNames = Workbook.SheetNames; // pass in the names of each sheet
  38. m_resolvedValue = m_formula.CalculateCell(sheetCells); // may return empty
  39. if (m_value != null)
  40. {
  41. m_formula.Result = double.Parse(m_resolvedValue.ToString());
  42. }
  43. return 0;
  44. }
  45. internal bool CalculationResolved
  46. {
  47. get
  48. {
  49. double db;
  50. if (m_resolvedValue == null)
  51. return false;
  52. else if (double.TryParse(m_resolvedValue.ToString(), out db))
  53. return true;
  54. return false;
  55. }
  56. }
  57. internal string CellReference
  58. {
  59. get { return Globals.CellReferenceFromRowColumn((ushort)m_row, (ushort)m_col); }
  60. }
  61. internal int CellType
  62. {
  63. get
  64. {
  65. if (m_value == null || m_value is System.DBNull)
  66. return Globals.CELL_TYPE_BLANK;
  67. else if (m_value is string)
  68. {
  69. if (m_value.ToString().Length == 0)
  70. return Globals.CELL_TYPE_BLANK;
  71. else if (m_value.ToString().Substring(0, 1) == "=")
  72. return Globals.CELL_TYPE_FORMULA;
  73. else
  74. return Globals.CELL_TYPE_LABEL;
  75. }
  76. else if (double.TryParse(m_value.ToString(), out tmp))
  77. return Globals.CELL_TYPE_NUMBER;
  78. else if (m_value is DateTime)
  79. return Globals.CELL_TYPE_DATE;
  80. else
  81. throw new Biff8ExcelException(string.Format("Unknown value type, row ={0}, col ={1}", m_row, m_col));
  82. }
  83. }
  84. //private ushort columnNumber
  85. //{
  86. // set { this.Column = value; }
  87. //}
  88. internal ushort Column
  89. {
  90. set { m_col = (value < 0 ? (ushort)0 : (ushort)value); }
  91. }
  92. internal ExcelCell(ExcelWorkbook pWorkbook)
  93. {
  94. this.pWorkbook = pWorkbook;
  95. m_cellstyle = pWorkbook.CreateStyle();
  96. m_styleIndex = -1;
  97. }
  98. internal bool HasThickBorderAbove
  99. {
  100. get
  101. {
  102. if (m_cellstyle.TopLineStyle == EnumLineStyle.Double || m_cellstyle.TopLineStyle == EnumLineStyle.Thick)
  103. return true;
  104. return false;
  105. }
  106. }
  107. internal bool HasThickBorderBelow
  108. {
  109. get
  110. {
  111. if (m_cellstyle.BottomLineStyle == EnumLineStyle.Double || m_cellstyle.BottomLineStyle == EnumLineStyle.Thick)
  112. return true;
  113. return false;
  114. }
  115. }
  116. internal ushort Row
  117. {
  118. set { m_row = (value < 0 ? (ushort)0 : (ushort)value); }
  119. }
  120. //internal ushort rowNumber
  121. //{
  122. // set { this.Row = value; }
  123. //}
  124. internal uint SSTindex
  125. {
  126. set { m_SSTIndex = value; }
  127. }
  128. public ExcelCellStyle Style
  129. {
  130. set
  131. {
  132. if (value == null)
  133. throw new ArgumentNullException("value","Style not allow null ");
  134. m_cellstyle = value;
  135. this.StyleIndex = value.GetXFIndex();
  136. }
  137. //internal get { return m_cellstyle; }
  138. }
  139. internal ushort sheetNumber
  140. {
  141. set { m_sheetNumber = value; }
  142. //get { return m_sheetNumber; }
  143. }
  144. internal int StyleIndex
  145. {
  146. set { m_styleIndex = value; }
  147. get { return m_styleIndex; }
  148. }
  149. public override string ToString()
  150. {
  151. return string.Format("sheetNumber:{0} col:{1} row:{2}", m_sheetNumber , m_col , m_row);
  152. }
  153. public Object Value
  154. {
  155. set
  156. {
  157. if (value == null)
  158. throw new ArgumentNullException("value","Value not allow null ");
  159. m_value = value;
  160. //Ignor for strings;
  161. if (value is string && value.ToString().Length > 0)
  162. if (value.ToString().Substring(0, 1) == "=")
  163. return;
  164. if (m_value != null)
  165. m_resolvedValue = value;
  166. }
  167. get { return m_value; }
  168. }
  169. internal ExcelWorkbook Workbook
  170. {
  171. get
  172. {
  173. return pWorkbook;
  174. }
  175. set
  176. {
  177. pWorkbook = value;
  178. }
  179. }
  180. internal byte[] WriteCell()
  181. {
  182. if (m_value == null || m_value is System.DBNull)
  183. {
  184. // Blank String
  185. if (m_blank == null)
  186. m_blank = new Biff8Excel.Records.Blank();
  187. m_blank.CellStyle = (ushort)m_styleIndex;
  188. m_blank.Row = m_row;
  189. m_blank.Column = m_col;
  190. return m_blank.GetByte();
  191. }
  192. // String Value
  193. else if (m_value is string)
  194. {
  195. // Blank String again, (in case the user types in "")
  196. if (m_value.ToString().Length == 0)
  197. {
  198. if (m_blank == null)
  199. m_blank = new Biff8Excel.Records.Blank();
  200. m_blank.CellStyle = (ushort)m_styleIndex;
  201. m_blank.Row = m_row;
  202. m_blank.Column = m_col;
  203. return m_blank.GetByte();
  204. }
  205. // Formula String
  206. else if (m_value.ToString().Substring(0, 1) == "=")
  207. {
  208. if (m_formula == null)
  209. m_formula = new Formula();
  210. m_formula.CellStyle = (ushort)m_styleIndex;
  211. m_formula.Row = m_row;
  212. m_formula.Column = m_col;
  213. return m_formula.GetByte();
  214. }
  215. // Label String
  216. else
  217. {
  218. if (m_label == null)
  219. m_label = new Biff8Excel.Records.LabelSST();
  220. m_label.CellStyle = (ushort)m_styleIndex;
  221. m_label.Row = m_row;
  222. m_label.Column = m_col;
  223. m_label.SSTIndex = m_SSTIndex;
  224. return m_label.GetByte();
  225. }
  226. }
  227. // Date Value (treated as an either a number or integer
  228. else if (m_value is System.DateTime)
  229. {
  230. string s = ((DateTime)m_value).ToOADate().ToString();
  231. if (s.IndexOf('.') > -1) // Date and Time
  232. {
  233. if (m_float == null)
  234. m_float = new Biff8Excel.Records.Number();
  235. m_float.CellStyle = (ushort)m_styleIndex;
  236. m_float.Row = m_row;
  237. m_float.Column = m_col;
  238. m_float.Value = Convert.ToDateTime(m_value).ToOADate();
  239. return m_float.GetByte();
  240. }
  241. else // just a date
  242. {
  243. if (m_integer == null)
  244. m_integer = new Biff8Excel.Records.RK();
  245. m_integer.CellStyle = (ushort)m_styleIndex;
  246. m_integer.Row = m_row;
  247. m_integer.Column = m_col;
  248. m_integer.Value = (uint)Math.Floor(((DateTime)m_value).ToOADate());
  249. return m_integer.GetByte();
  250. }
  251. }
  252. // Number Value
  253. else if (double.TryParse(m_value.ToString(), out tmp))
  254. {
  255. // Integer Value or Date
  256. if ((m_value is int) || (m_value is ushort))
  257. {
  258. if (m_integer == null)
  259. m_integer = new Biff8Excel.Records.RK();
  260. m_integer.CellStyle = (ushort)m_styleIndex;
  261. m_integer.Row = m_row;
  262. m_integer.Column = m_col;
  263. m_integer.Value = Convert.ToInt32( m_value );
  264. return m_integer.GetByte();
  265. }
  266. else
  267. //// Floating Point Value
  268. //if ((m_value is decimal) || (m_value is double) || (m_value is Single))
  269. {
  270. if (m_float == null)
  271. m_float = new Biff8Excel.Records.Number();
  272. m_float.CellStyle = (ushort)m_styleIndex;
  273. m_float.Row = m_row;
  274. m_float.Column = m_col;
  275. m_float.Value = Convert.ToDouble(m_value);
  276. return m_float.GetByte();
  277. }
  278. }
  279. // unknown Value
  280. else
  281. {
  282. throw new Biff8ExcelException(string.Format("Unknown value type, row ={0}, col ={1}", m_row, m_col));
  283. }
  284. return null;
  285. }
  286. #region IDisposable ³ÉÔ±
  287. public void Dispose()
  288. {
  289. m_blank = null;
  290. m_label = null;
  291. m_integer = null;
  292. m_float = null;
  293. m_formula = null;
  294. m_cellstyle = null;
  295. }
  296. #endregion
  297. #region ICell ³ÉÔ±
  298. public object ResolvedValue
  299. {
  300. get { return m_resolvedValue; }
  301. }
  302. #endregion
  303. }
  304. }