using NPOI.SS.UserModel;
namespace YBEE.EQM.Application;
///
/// 导出单元格样式
///
public class ExportExcelCellStyle
{
///
/// 标题字段
///
public string TitleFontName { get; set; } = "黑体";
///
/// 常规字段
///
public string FontName { get; set; } = "宋体";
///
/// 标题样式
///
public ICellStyle TitleStyle { get; set; }
///
/// 摘要样式
///
public ICellStyle SummaryStyle { get; set; }
///
/// 列头样式
///
public ICellStyle ColumnHeaderStyle { get; set; }
///
/// 居中对齐
///
public ICellStyle CenterCellStyle { get; set; }
///
/// 居左对齐
///
public ICellStyle LeftCellStyle { get; set; }
///
/// 居右对齐
///
public ICellStyle RightCellStyle { get; set; }
///
/// 填充样式
///
public ICellStyle FillCellStyle { get; set; }
///
/// 默认标题高度
///
public static readonly short DefaultTitleHeight = 50 * 20;
///
/// 默认行高
///
public static readonly short DefaultRowHeight = 20 * 20;
}