PropertyOfLayoutBox.cs 511 B

123456789101112131415161718192021
  1. 
  2. using System;
  3. using System.Collections;
  4. using System.Drawing;
  5. namespace Dongke.WinForm.Controls.InvoiceLayout
  6. {
  7. [Serializable]
  8. internal class PropertyOfLayoutBox
  9. {
  10. public int NewItemID;
  11. public float PaperHeight;
  12. public float PaperWidth;
  13. public ArrayList Items;
  14. public Image BackgroundImage;
  15. public string BackgroundImageName;
  16. public bool PrintAreaVisible;
  17. public bool PrintBackground;
  18. public RectangleF LastItemRF;
  19. }
  20. }