2014-10-09 182 views
9

我已經嘗試了十幾種方法來做到這一點,沒有什麼作品。我嘗試將垂直對齊應用到中心。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); 

乾杯!

+0

您使用的是哪種版本的NPOI? – 2014-12-31 15:09:36

+0

@WordyFox 2.1.1 – 2015-01-02 09:14:35

+0

你有沒有找到解決方案? – 2015-06-02 18:11:48

回答

2

下面的代碼,從\examples文件夾中大量吸收,導致: - 版本2.0 Beta 1的

Excel demo

剛剛安裝了最新下載(從Excel 2007年採取截圖) [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; 
     } 
    } 
}