programing

npoi 수직 선형 중심

css3 2023. 9. 12. 20:11

npoi 수직 선형 중심

저는 이것을 하기 위해 몇 가지 방법을 시도해 보았지만 아무 것도 되지 않습니다.저는 중앙에 수직 정렬을 적용하려고 합니다.

아무것도 안 되는 것 같아요.

도움을 주시면 정말 감사하겠습니다.

여기 내 코드가 있습니다.

        var workbook = new HSSFWorkbook();

            var sheet = workbook.CreateSheet("Zmiana " + i.ToString());

            var headerRow = sheet.CreateRow(0);

            headerRow.CreateCell(0).SetCellValue("Data");
            headerRow.CreateCell(1).SetCellValue("Maszyna");
            headerRow.CreateCell(2).SetCellValue("Zmiana");
            headerRow.CreateCell(3).SetCellValue("Brygadzista");

            int rowNumber = 1;

            List<MachineStatusReport> listForOneShift = list.Where(c => c.Zmiana == i).ToList();

            foreach (MachineStatusReport elements in listForOneShift)
            {
                var row = sheet.CreateRow(rowNumber++);


                    row.CreateCell(0).SetCellValue(date.ToShortDateString());
                    row.CreateCell(1).SetCellValue(elements.Stanowisko);
                    row.CreateCell(2).SetCellValue("Zmiana " + i.ToString());
                    row.CreateCell(3).SetCellValue(elements.Brygadzista);
                    row.CreateCell(4).SetCellValue(elements.KodProduktu); 
            }

                    NPOI.SS.Util.CellRangeAddress cra = new NPOI.SS.Util.CellRangeAddress(1, counter, 1, 5);
                    sheet.AddMergedRegion(cra);
            }

        MemoryStream output = new MemoryStream();
        workbook.Write(output);

건배!

다음의 코드는 대부분에서 따온 것입니다.\examples폴더, 결과:

Excel demo

(Excel 2007에서 촬영한 스크린샷)

최신 다운로드 설치 - 버전 2.0 베타 1 [v2.0.1] 2013년 2월 (NPOI)DLL 2.3.0.0)

/* ====================================================================
   Licensed to the Apache Software Foundation (ASF) under one or more
   contributor license agreements.  See the NOTICE file distributed with
   this work for additional information regarding copyright ownership.
   The ASF licenses this file to You under the Apache License, Version 2.0
   (the "License"); you may not use this file except in compliance with
   the License.  You may obtain a copy of the License at

       http://www.apache.org/licenses/LICENSE-2.0

   Unless required by applicable law or agreed to in writing, software
   distributed under the License is distributed on an "AS IS" BASIS,
   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
   See the License for the specific language governing permissions and
   limitations under the License.
==================================================================== */

/* ================================================================
 * Author: Tony Qu 
 * Author's email: tonyqus (at) gmail.com 
 * NPOI HomePage: http://www.codeplex.com/npoi
 * Contributors:
 * 
 * ==============================================================*/

using System;
using System.Text;
using System.IO;
using NPOI.HSSF.UserModel;
using NPOI.HSSF.Util;
using NPOI.HPSF;
using NPOI.POIFS.FileSystem;
using NPOI.SS.UserModel;

/*
 This sample is copied from poi.hssf.usermodel.examples. Original name is Borders.java
 */
namespace SetBorderStyleInXls
{
    class Program
    {
        static void Main(string[] args)
        {
            InitializeWorkbook();

            ISheet sheet = hssfworkbook.CreateSheet("new sheet");

            // Create a row and put some cells in it. Rows are 0 based.
            IRow row = sheet.CreateRow(1);

            // Create a cell and put a value in it.
            ICell cell = row.CreateCell(1);
            cell.SetCellValue(4);

            // Style the cell with borders all around.
            ICellStyle style = hssfworkbook.CreateCellStyle();
            style.BorderBottom= BorderStyle.Thin;
            style.BottomBorderColor= HSSFColor.Black.Index;
            style.BorderLeft = BorderStyle.DashDotDot;
            style.LeftBorderColor= HSSFColor.Green.Index;
            style.BorderRight = BorderStyle.Hair;
            style.RightBorderColor= HSSFColor.Blue.Index;
            style.BorderTop = BorderStyle.MediumDashed;
            style.TopBorderColor= HSSFColor.Orange.Index;
            cell.CellStyle= style;

            // Create a cell and put a value in it.
            ICell cell2 = row.CreateCell(2);
            cell2.SetCellValue(5);
            ICellStyle style2 = hssfworkbook.CreateCellStyle();
            style2.BorderBottom = BorderStyle.Thick;
            style.BottomBorderColor = HSSFColor.Black.Index;
            cell2.CellStyle = style2;

            // Create a vertically and horizontally centred cell
            row.CreateCell(3).SetCellValue("Center Hello World Hello WorldHello WorldHello WorldHello WorldHello World");
            ICellStyle styleMiddle = hssfworkbook.CreateCellStyle();
            styleMiddle.Alignment = HorizontalAlignment.Center;
            styleMiddle.VerticalAlignment = VerticalAlignment.Center;
            styleMiddle.WrapText = true; //wrap the text in the cell
            row.GetCell(3).CellStyle = styleMiddle;
            sheet.SetColumnWidth(3, 256 * 40);

            // Create a vertically aligned top and horizontally centred cell
            row.CreateCell(4).SetCellValue("Top Hello World Hello WorldHello WorldHello WorldHello WorldHello World");
            ICellStyle styleMiddle2 = hssfworkbook.CreateCellStyle();
            styleMiddle2.Alignment = HorizontalAlignment.Center;
            styleMiddle2.VerticalAlignment = VerticalAlignment.Top;
            styleMiddle2.WrapText = true; //wrap the text in the cell
            row.GetCell(4).CellStyle = styleMiddle2;
            sheet.SetColumnWidth(4, 256 * 40);

            row.Height = 1000;

            WriteToFile();
        }


        static HSSFWorkbook hssfworkbook;

        static void WriteToFile()
        {
            //Write the stream data of workbook to the root directory
            FileStream file = new FileStream(@"test.xls", FileMode.Create);
            hssfworkbook.Write(file);
            file.Close();
        }

        static void InitializeWorkbook()
        {
            hssfworkbook = new HSSFWorkbook();

            //Create a entry of DocumentSummaryInformation
            DocumentSummaryInformation dsi = PropertySetFactory.CreateDocumentSummaryInformation();
            dsi.Company = "NPOI Team";
            hssfworkbook.DocumentSummaryInformation = dsi;

            //Create a entry of SummaryInformation
            SummaryInformation si = PropertySetFactory.CreateSummaryInformation();
            si.Subject = "NPOI SDK Example";
            hssfworkbook.SummaryInformation = si;
        }
    }
}

언급URL : https://stackoverflow.com/questions/26276224/npoi-vertical-alignment-center