using System.Drawing;
using JNPF.DependencyInjection;
namespace JNPF.Common.Models.NPOI;
///
/// Excel导出列名
/// 版 本:V3.0.0
/// 版 权:引迈信息技术有限公司(https://www.jnpfsoft.com)
/// 作 者:JNPF开发平台组
/// 日 期:2017.03.09.
///
[SuppressSniffer]
public class ExcelColumnModel
{
///
/// 列名.
///
public string? Column { get; set; }
///
/// Excel列名.
///
public string? ExcelColumn { get; set; }
///
/// 宽度.
///
public int Width { get; set; }
///
/// 前景色.
///
public Color ForeColor { get; set; }
///
/// 背景色.
///
public Color Background { get; set; }
///
/// 字体.
///
public string? Font { get; set; }
///
/// 字号.
///
public short Point { get; set; }
///
/// 对齐方式
/// left 左
/// center 中间
/// right 右
/// fill 填充
/// justify 两端对齐
/// centerselection 跨行居中
/// distributed.
///
public string? Alignment { get; set; }
}