using System; using System.Collections.Generic; using System.Linq; using System.Text; using DocumentFormat.OpenXml.Packaging; using DocumentFormat.OpenXml; using DocumentFormat.OpenXml.Spreadsheet; namespace IronIntel.Contractor { /// /// 单元格数据类型 /// public enum CellDataType { String, Bool, Date, Guid, Float, Integer } /// /// 单元格格式类型 /// public enum CellFormatType { CSharp, Excel } #region 单元格边界样式 Cell Border public enum EBorder { None, Single, Double } public class CellBorder { public LeftBorder LeftBorder { get; set; } public RightBorder RightBorder { get; set; } public TopBorder TopBorder { get; set; } public BottomBorder BottomBorder { get; set; } public DiagonalBorder DialogalBorder { get; set; } } #endregion /// /// 单元格对齐方式 /// #region cell alignment public class CellAlignment { public Alignment Align { get; set; } } #endregion /// /// 单元格填充颜色 /// #region cell fill public class CellFill { public System.Drawing.Color FillColor { get; set; } } #endregion /// /// 单元格字体 /// #region cell font public class CellFont { public string FontName { get; set; } public DoubleValue FontSize { get; set; } public BooleanValue IsBold { get; set; } public System.Drawing.Color ForeColor { get; set; } } #endregion /// /// 单元格样式和数据。 /// public interface IOpenXmlExcelStyleAndData { //单元格数据值 object Value { get; set; } //单元格数据类型 CellDataType DataType { get; set; } //单元格数据颜色 CellFont CFont { get; set; } //单元格数据格式 CellFormatType FormatType { get; set; } String FormatCode { get; set; } //单元格边界样式 CellBorder CBorder { get; set; } //单元格对齐方式 CellAlignment CAlignment { get; set; } //填充颜色 CellFill CFill { get; set; } //合并单元格需要合并的 String MergedCellsPosition { get; set; } } /// /// excel sheet 数据和样式集合。 /// public class COpenXmlExcelSheet { public List> DataMatrix { get; set; } private List _WidthList = new List(); public List WidthList { get { return _WidthList; } } Dictionary _RowHeightList = new Dictionary(); public Dictionary RowHeightList { get { return _RowHeightList; } } } }