using System; using System.Collections.Generic; using PDFSettings; using System.Linq; using System.Text; using System.Threading.Tasks; namespace PDF_Master.Model.EditTools.Bates { public class BatesCreateModel { } public class BatesInfo { /// /// 模板名称 /// public string ItemName = ""; /// /// 内容 /// public contentItem[] TextData = new contentItem[6]; /// /// 间距 /// /// public float[] margin = new float[4]; /// /// 起始页 /// public int StarPagetNumber = 1; /// /// 贝茨码:前缀 /// public string Prefix = ""; /// /// 贝茨码:后缀 /// public string Suffix = ""; /// /// 贝茨码:位数 /// public int DigitNumber = 1; /// /// 页面范围 /// public string PageRange = "0"; /// /// 页面范围索引; /// 0:全部页面 /// 1:奇数页 /// 2;偶数页 /// 3:自定义页 /// public int PageRangeIndex = 0; } //public struct contentItem //{ // public BateHeaderFooter_ContentType textTag; // public string text; // public string fontName; // public float fontSize; // /// // /// 纯色背景颜色 // /// // public byte[] Color; //} //public enum BateHeaderFooter_ContentType //{ // L_Header, // C_Header, // R_Header, // L_Footer, // C_Footer, // R_Footer //} }