using System; using System.Collections.Generic; using System.Text; namespace E_Print { /// <summary> /// 下页需要补充绘制 /// </summary> public class PagingMakeUp { /// <summary> /// 补充单元格 /// </summary> private Cell _makeupCell; /// <summary> /// 补充高度 /// </summary> private float _makeupHeight; /// <summary> /// 构造函数 /// </summary> public PagingMakeUp() { _makeupCell = new Cell(); _makeupHeight = ; } /// <summary> /// 获取--设置--补充单元格 /// </summary> public Cell MakeupCell { get { return _makeupCell; } set { _makeupCell = value; } } /// <summary> /// 获取--设置--补充高度 /// </summary> public float MakeupHeight { get { return _makeupHeight; } set { _makeupHeight = value; } } } }
5、IObjectSafety 抽象接口类