// Tạo header
        public HeaderInputs CreateHeader()
        {
            HeaderInputs headInput = new HeaderInputs();
            // Tạo danh sách header với các đầu vào(row, colum,size,text)
            List <HeaderLocation> lstHeaderLocation = new List <HeaderLocation>()
            {
                new HeaderLocation(1, 1, 20, "Thống kê danh sách hộp số"),
                new HeaderLocation(2, 1, 20, "Hộp số"), new HeaderLocation(2, 2, 20, "Hồ sơ số"), new HeaderLocation(2, 3, 50, "Tiêu đề hồ sơ"),
                new HeaderLocation(2, 4, 20, "Số tờ"), new HeaderLocation(2, 5, 25, "THBQ"), new HeaderLocation(2, 6, 30, "Ghi chú")
            };
            // tạo danh sách các ô bị merge(từ hàng , từ cột, đến hàng,đến cột)
            List <MergeTo> lstMerge = new List <MergeTo>()
            {
                new MergeTo(1, 1, 1, 6)
            };

            // gán các tham số cho headInput
            headInput.ListHeader     = lstHeaderLocation;
            headInput.ListMergeIndex = lstMerge;
            headInput.HeaderHeight   = 4; // số hàng mà header chiếm trong excell
            return(headInput);
        }
        // Tạo header
        public HeaderInputs CreateHeader()
        {
            HeaderInputs headInput = new HeaderInputs();
            // Tạo danh sách header với các đầu vào(row, colum,size,text)
            List <HeaderLocation> lstHeaderLocation = new List <HeaderLocation>()
            {
                new HeaderLocation(1, 1, 20, "Thống kê dữ liệu"),
                new HeaderLocation(2, 1, 30, "Tên phông"), new HeaderLocation(2, 2, 20, "Mục lục số"), new HeaderLocation(2, 3, 20, "Mã hộp số"),
                new HeaderLocation(2, 4, 20, "Mã hồ sơ"), new HeaderLocation(2, 5, 50, "Tên file"), new HeaderLocation(2, 6, 30, "Văn bản")
                , new HeaderLocation(2, 7, 30, "Ngày cập nhật")
            };
            // tạo danh sách các ô bị merge(từ hàng , từ cột, đến hàng,đến cột)
            List <MergeTo> lstMerge = new List <MergeTo>()
            {
                new MergeTo(1, 1, 1, 7)
            };

            // gán các tham số cho headInput
            headInput.ListHeader     = lstHeaderLocation;
            headInput.ListMergeIndex = lstMerge;
            headInput.HeaderHeight   = 4; // số hàng mà header chiếm trong excell
            return(headInput);
        }
        // Tạo header
        public HeaderInputs CreateHeader()
        {
            HeaderInputs headInput = new HeaderInputs();
            // Tạo danh sách header với các đầu vào(row, colum,size,text)
            List <HeaderLocation> lstHeaderLocation = new List <HeaderLocation>()
            {
                new HeaderLocation(1, 3, 20, "Thống kê danh sách văn bản"),
                new HeaderLocation(2, 1, 20, "Hồ sơ số"), new HeaderLocation(2, 2, 20, "Tài liệu số"), new HeaderLocation(2, 3, 50, "Stt trong hồ sơ"),
                new HeaderLocation(2, 4, 20, "Tên loại tài liệu"), new HeaderLocation(2, 5, 25, "Nội dung"), new HeaderLocation(2, 6, 30, "Số tờ")
                , new HeaderLocation(2, 7, 30, "Mức độ tin cậy"), new HeaderLocation(2, 8, 30, "Tình trạng")
                , new HeaderLocation(2, 9, 30, "Ghi chú")
            };
            // tạo danh sách các ô bị merge(từ hàng , từ cột, đến hàng,đến cột)
            List <MergeTo> lstMerge = new List <MergeTo>()
            {
                new MergeTo(1, 1, 1, 9)
            };

            // gán các tham số cho headInput
            headInput.ListHeader     = lstHeaderLocation;
            headInput.ListMergeIndex = lstMerge;
            headInput.HeaderHeight   = 4; // số hàng mà header chiếm trong excell
            return(headInput);
        }