Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

npoi vertical alignment center

Tags:

c#

excel

npoi

I've tried a dozen ways to do this and nothing works. I try to apply vertical alignment to center.

Nothing seems to be working.

I'd really appreciate some help.

Here is my code:

        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);

Cheers!

like image 914
cah1r Avatar asked Oct 09 '14 10:10

cah1r


1 Answers

The following code, taken largely from the \examples folder, results in:

Excel demo

(Screenshot taken from Excel 2007)

Just Installed Latest download - version 2.0 Beta 1 [v2.0.1] Feb, 2013 (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;
        }
    }
}
like image 194
K Scandrett Avatar answered Oct 28 '22 18:10

K Scandrett