ExcelPrintSetup.cs 7.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace Biff8Excel.Excel
  5. {
  6. public class ExcelPrintSetup: IDisposable
  7. {
  8. Records.WSBool m_wsBool;
  9. Records.Setup m_setup;
  10. Records.HCenter m_hCenter;
  11. Records.VCenter m_vCenter;
  12. Records.TMargin m_tMargin;
  13. Records.LMargin m_lMargin;
  14. Records.BMargin m_bMargin;
  15. Records.RMargin m_rMargin;
  16. Records.PrintGridLines m_printGrid;
  17. Records.PrintSheetHeaders m_printHeaders;
  18. ushort m_wsBoolOptions;
  19. ushort m_setupOptions;
  20. internal byte[] WriteRecord_SETUP()
  21. {
  22. m_setup.OptionFlags = m_setupOptions;
  23. return m_setup.GetByte();
  24. }
  25. internal byte[] WriteRecord_WSBOOL()
  26. {
  27. m_wsBool.Options = m_wsBoolOptions;
  28. return m_wsBool.GetByte();
  29. }
  30. internal byte[] WriteRecord_HCENTER()
  31. {
  32. return m_hCenter.GetByte();
  33. }
  34. internal byte[] Writerecord_VCENTER()
  35. {
  36. return m_vCenter.GetByte();
  37. }
  38. internal byte[] Writerecord_TMARGIN()
  39. {
  40. return m_tMargin.GetByte();
  41. }
  42. internal byte[] Writerecord_LMARGIN()
  43. {
  44. return m_lMargin.GetByte();
  45. }
  46. internal byte[] Writerecord_BMARGIN()
  47. {
  48. return m_bMargin.GetByte();
  49. }
  50. internal byte[] Writerecord_RMARGIN()
  51. {
  52. return m_rMargin.GetByte();
  53. }
  54. internal byte[] WriteRecord_PRINTGRID()
  55. {
  56. return m_printGrid.GetByte();
  57. }
  58. internal byte[] WriteRecord_PRINTHEADER()
  59. {
  60. return m_printHeaders.GetByte();
  61. }
  62. public EnumPaperSize PaperSize
  63. {
  64. set { m_setup.PaperSize = (ushort)value; }
  65. }
  66. public ushort ScaleFactor
  67. {
  68. set
  69. {
  70. m_setup.ScaleFactor = value;
  71. m_wsBoolOptions = (ushort)(m_wsBoolOptions & (~0x100)); //sets printout to Scale mode
  72. m_wsBool.Options = m_wsBoolOptions;
  73. }
  74. }
  75. public bool StartPage
  76. {
  77. set
  78. {
  79. m_setup.StartPage = (ushort)(value ? -1:0);
  80. m_setupOptions = (ushort)(m_setupOptions | 0x80);
  81. }
  82. }
  83. public ushort FitPagesWide
  84. {
  85. set
  86. {
  87. m_setup.FitPagesWide = value;
  88. m_wsBoolOptions = (ushort)(m_wsBoolOptions | 0x100); //sets printout to pages wide mode
  89. m_wsBool.Options = m_wsBoolOptions;
  90. }
  91. }
  92. public ushort FitPageHigh
  93. {
  94. set
  95. {
  96. m_setup.FitPagesHigh = value;
  97. m_wsBoolOptions = (ushort)(m_wsBoolOptions | 0x100); //sets printout to pages wide mode
  98. m_wsBool.Options = m_wsBoolOptions;
  99. }
  100. }
  101. public bool PrintPrintBlackAndWhite
  102. {
  103. set
  104. {
  105. if (value)
  106. m_setupOptions = (ushort)(m_setupOptions | 0x8);
  107. else
  108. m_setupOptions = (ushort)(m_setupOptions & (~0x8));
  109. }
  110. }
  111. public bool PrintDraftQuality
  112. {
  113. set
  114. {
  115. if (value)
  116. {
  117. m_setupOptions = (ushort)(m_setupOptions | 0x10);
  118. }
  119. else
  120. {
  121. m_setupOptions = (ushort)(m_setupOptions & (~0x10));
  122. }
  123. m_setup.HorizontalDpi = 300;
  124. m_setup.VerticalDpi = 300;
  125. }
  126. }
  127. public EnumPaperOrientation Orientation
  128. {
  129. set
  130. {
  131. if (value == EnumPaperOrientation.Portrait)
  132. m_setupOptions = (ushort)(m_setupOptions | 0x2);
  133. else
  134. m_setupOptions = (ushort)(m_setupOptions & (~0x2));
  135. }
  136. }
  137. public bool CenterHorizontally
  138. {
  139. set { m_hCenter.Center = (ushort)(value ? 1 : 0); }
  140. }
  141. public bool CenterVertically
  142. {
  143. set { m_vCenter.Center = (ushort)(value ? 1 : 0); }
  144. }
  145. /// <summary>
  146. /// 打印时是否加上表格线
  147. /// </summary>
  148. public bool PrintGridLines
  149. {
  150. set { m_printGrid.PrintLines = (ushort)(value ? 1 : 0); }
  151. }
  152. public bool PrintHeaders
  153. {
  154. set { m_printHeaders.PrintHeaders = (ushort)(value ? 1 : 0); }
  155. }
  156. public double HeaderMargin
  157. {
  158. set { m_setup.HeaderMargin = value / 2.5; }
  159. }
  160. public double FooterMargin
  161. {
  162. set { m_setup.FooterMargin = value / 2.5; }
  163. }
  164. public ushort Copies
  165. {
  166. set { m_setup.Copies = value; }
  167. }
  168. public double TopMargin
  169. {
  170. set { m_tMargin.Value = value / 2.5; }
  171. }
  172. public double LeftMargin
  173. {
  174. set { m_lMargin.Value = value / 2.5; }
  175. }
  176. public double BottomMargin
  177. {
  178. set { m_bMargin.Value = value / 2.5; }
  179. }
  180. public double RightMargin
  181. {
  182. set { m_rMargin.Value = value / 2.5; }
  183. }
  184. public ExcelPrintSetup()
  185. {
  186. m_setup = new Biff8Excel.Records.Setup();
  187. m_wsBool = new Biff8Excel.Records.WSBool();
  188. m_hCenter = new Biff8Excel.Records.HCenter();
  189. m_vCenter = new Biff8Excel.Records.VCenter();
  190. m_tMargin = new Biff8Excel.Records.TMargin();
  191. m_lMargin = new Biff8Excel.Records.LMargin();
  192. m_bMargin = new Biff8Excel.Records.BMargin();
  193. m_rMargin = new Biff8Excel.Records.RMargin();
  194. m_printGrid = new Biff8Excel.Records.PrintGridLines();
  195. m_printHeaders = new Biff8Excel.Records.PrintSheetHeaders();
  196. // default values
  197. m_wsBoolOptions = (ushort)(m_wsBoolOptions | 0x1); // Show automatic page breaks
  198. m_wsBoolOptions = (ushort)(m_wsBoolOptions | 0x40); // outline buttons below outline group
  199. m_wsBoolOptions = (ushort)(m_wsBoolOptions | 0x80); // outline buttons right of outline group
  200. // default settings
  201. m_setup.PaperSize = 9; // A4
  202. m_setup.ScaleFactor = 100; // 100 percent
  203. m_setup.HorizontalDpi = 600;
  204. m_setup.VerticalDpi = 600;
  205. m_setup.Copies = 1;
  206. m_setup.FitPagesHigh = 1;
  207. m_setup.FitPagesWide = 1;
  208. m_setup.StartPage = 1;
  209. m_setup.HeaderMargin = 0.5;
  210. m_setup.FooterMargin = 0.5;
  211. m_setupOptions = (ushort)(m_setupOptions | 0x2); // Portrait
  212. m_setup.OptionFlags = m_setupOptions ;
  213. // default margins
  214. m_tMargin.Value = 1;
  215. m_lMargin.Value = 0.7;
  216. m_bMargin.Value = 1;
  217. m_rMargin.Value = 0.7;
  218. }
  219. #region IDisposable 成员
  220. public void Dispose()
  221. {
  222. m_setup = null;
  223. m_wsBool = null;
  224. m_hCenter = null;
  225. m_vCenter = null;
  226. m_tMargin = null;
  227. m_lMargin = null;
  228. m_bMargin = null;
  229. m_rMargin = null;
  230. m_printGrid = null;
  231. m_printHeaders = null;
  232. }
  233. #endregion
  234. }
  235. }