PropertyOfLayoutBox.cs 899 B

1234567891011121314151617181920212223242526272829
  1. /*******************************************************************************
  2. * Copyright(c) 2012 dongke All rights reserved. / Confidential
  3. * 类的信息:
  4. * 1.程序名称:PropertyOfLayoutBox.cs
  5. * 2.功能描述:Layout的序列化属性封装
  6. * 编辑履历:
  7. * 作者 日期 版本 修改内容
  8. * 欧阳涛 2012/09/14 1.00 新建
  9. *******************************************************************************/
  10. using System;
  11. using System.Collections;
  12. using System.Drawing;
  13. namespace Dongke.WinForm.Controls.InvoiceLayout
  14. {
  15. [Serializable]
  16. internal class PropertyOfLayoutBox
  17. {
  18. public int NewItemID;
  19. public float PaperHeight;
  20. public float PaperWidth;
  21. public ArrayList Items;
  22. public Image BackgroundImage;
  23. public string BackgroundImageName;
  24. public bool PrintAreaVisible;
  25. public bool PrintBackground;
  26. public RectangleF LastItemRF;
  27. }
  28. }