| 1234567891011121314151617181920212223242526272829 |
- /*******************************************************************************
- * Copyright(c) 2012 dongke All rights reserved. / Confidential
- * 类的信息:
- * 1.程序名称:PropertyOfLayoutBox.cs
- * 2.功能描述:Layout的序列化属性封装
- * 编辑履历:
- * 作者 日期 版本 修改内容
- * 欧阳涛 2012/09/14 1.00 新建
- *******************************************************************************/
- using System;
- using System.Collections;
- using System.Drawing;
- namespace Dongke.WinForm.Controls.InvoiceLayout
- {
- [Serializable]
- internal class PropertyOfLayoutBox
- {
- public int NewItemID;
- public float PaperHeight;
- public float PaperWidth;
- public ArrayList Items;
- public Image BackgroundImage;
- public string BackgroundImageName;
- public bool PrintAreaVisible;
- public bool PrintBackground;
- public RectangleF LastItemRF;
- }
- }
|