网页WEB打印控件制作(3)

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 抽象接口类

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/wjypwg.html