WebPrinterPageSetting.cs
上传用户:jx_fiona
上传日期:2014-03-08
资源大小:1387k
文件大小:2k
源码类别:

打印编程

开发平台:

Others

  1. using System;
  2. namespace GoldPrinter
  3. {
  4. /// <summary>
  5. /// WebForm下的打印纸张设置、打印机设置、打印预览对话框。(***暂无实现,请查看作者关于Web打印方案,敬请密切关注作者网站或Blog发布消息***)。
  6. /// 
  7. /// 作 者:长江支流(周方勇)
  8. /// Email:flygoldfish@163.com  QQ:150439795
  9. /// 网 址:www.webmis.com.cn
  10. /// ★★★★★您可以免费使用此程序,但是请您完整保留此说明,以维护知识产权★★★★★
  11. /// 
  12. /// </summary>
  13. public class WebPrinterPageSetting:IPrinterPageSetting
  14. {
  15. public WebPrinterPageSetting()
  16. {
  17. //
  18. // TODO: 在此处添加构造函数逻辑
  19. //
  20. }
  21. #region IPrinterPageSetting 成员
  22. public System.Drawing.Printing.PrintDocument PrintDocument
  23. {
  24. get
  25. {
  26. // TODO:  添加 WebPrinterPageSetting.PrintDocument getter 实现
  27. return null;
  28. }
  29. set
  30. {
  31. // TODO:  添加 WebPrinterPageSetting.PrintDocument setter 实现
  32. }
  33. }
  34. public GoldPrinter.PrintPageDelegate PrintPageValue
  35. {
  36. get
  37. {
  38. // TODO:  添加 WebPrinterPageSetting.PrintPageValue getter 实现
  39. return null;
  40. }
  41. set
  42. {
  43. // TODO:  添加 WebPrinterPageSetting.PrintPageValue setter 实现
  44. }
  45. }
  46. public event GoldPrinter.PrintPageDelegate PrintPage;
  47. public ImportExcelDelegate ImportExcelValue
  48. {
  49. get
  50. {
  51. // TODO:  添加实现
  52. return null;
  53. }
  54. set
  55. {
  56. // TODO:  添加实现
  57. }
  58. }
  59. public System.Drawing.Printing.PageSettings ShowPageSetupDialog()
  60. {
  61. // TODO:  添加 WebPrinterPageSetting.ShowPageSetupDialog 实现
  62. return null;
  63. }
  64. public System.Drawing.Printing.PrinterSettings ShowPrintSetupDialog()
  65. {
  66. // TODO:  添加 WebPrinterPageSetting.ShowPrintSetupDialog 实现
  67. return null;
  68. }
  69. public void ShowPrintPreviewDialog()
  70. {
  71. // TODO:  添加 WebPrinterPageSetting.ShowPrintPreviewDialog 实现
  72. }
  73. #endregion
  74. }//End Class
  75. }//End NameSpace