web-dev-qa-db-ja.com

EPPlusフォントファミリは影響を受けない

データをExcelファイルにエクスポートするためのnugetパッケージとしてasp.net MVC 4とepplusを使用しています。私はそれを次のように行います:

var Excel = new ExcelPackage();
var workSheet = Excel.Workbook.Worksheets.Add("Consumption");
workSheet.View.RightToLeft = true;
for (var col = 1; col <= totalCols; col++)
{
    workSheet.Cells[1, col].Style.Font.Name = "B Zar";
    workSheet.Cells[1, col].Style.Font.Size = 16;
    workSheet.Cells[1, col].Style.Font.Bold = true;
    workSheet.Cells[1, col].Style.Fill.PatternType = OfficeOpenXml.Style.ExcelFillStyle.Solid;
    workSheet.Cells[1, col].Style.Fill.BackgroundColor.SetColor(System.Drawing.Color.LightGray);
    workSheet.Cells[1, col].Value = ds.Tables[0].Columns[col - 1].ColumnName;
}

for (var row = 1; row <= totalRows; row++)
    for (var col = 0; col < totalCols; col++)
    {
        workSheet.Cells[row + 1, col + 1].Style.Font.Name = "B Zar";
        workSheet.Cells[row + 1, col + 1].Style.Font.Size = 11;
        workSheet.Cells[row + 1, col + 1].Value = ds.Tables[0].Rows[row - 1][col];
    }

workSheet.Cells[1, 1, totalRows + 1, totalCols].Style.Border.Top.Style =
    workSheet.Cells[1, 1, totalRows + 1, totalCols].Style.Border.Bottom.Style =
        workSheet.Cells[1, 1, totalRows + 1, totalCols].Style.Border.Right.Style =
            workSheet.Cells[1, 1, totalRows + 1, totalCols].Style.Border.Left.Style =
                OfficeOpenXml.Style.ExcelBorderStyle.Thin;
workSheet.Cells[1, 1, totalRows + 1, totalCols].Style.HorizontalAlignment = OfficeOpenXml.Style.ExcelHorizontalAlignment.Center;

using (var memoryStream = new MemoryStream())
{
    Response.ContentType = "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet";
    Response.AddHeader("content-disposition", "attachment;  filename=Consumptions.xlsx");
    Excel.SaveAs(memoryStream);
    memoryStream.WriteTo(Response.OutputStream);
    Response.Flush();
    Response.End();
}

問題は、ファイルをダウンロードしてExcel 2016で開くと、フォントファミリーは影響を受けず、フォント名ボックスに表示されることです。コンボボックスにフォーカスしてEnterキーを押すと、フォントファミリが影響を受けます。

この問題を解決するにはどうすればよいですか?

13
Varan Sinayee

これを試して:

var allCells = sheet.Cells[1, 1, sheet.Dimension.End.Row, sheet.Dimension.End.Column];
var cellFont = allCells.Style.Font;
cellFont.SetFromFont(new Font("Times New Roman", 12));
cellFont.Bold = true;
cellFont.Italic = true;
17
VDWWD
workSheet.Cells.Style.Font.Name = "Arial Narrow";
workSheet.Cells.Style.Font.Size = 10;

これは、すべてのrowsおよびcolumnsに影響します。

この問題は、EPPlus(バージョン4.5.3.2)がフォント文字セットをサポートしていないために発生します。選択したフォント( 'B Zar')のフォント文字セットはアラビア語(= 178)です。私はURL https://github.com/mzatkhahi/EPPlus でEPPlusをフォークし、このバグを修正しました。次に、このコードを使用してペルシア語フォントをサポートできます。

workSheet.Cells[1, col].Style.Font.Charset = 178;
1
Zatkhahi
//For specific cell range
using (var range = worksheet.Cells[From Row, From Column, To Row, To Column]) 
{
         range.Style.Font.Bold = true;
}
//For understanding,   
//Column Number = Worksheet.Dimension.End.Column   
//Row Number = Worksheet.Dimension.End.Row

// OR  
//For Whole row 
using(var package = new OfficeOpenXml.ExcelPackage())
{
    worksheet.Row(5).CustomHeight = false;
    worksheet.Row(5).Height = 50;
    worksheet.Row(5).Style.Font.Bold = true ;
    worksheet.Row(5).Style.WrapText = true;
}
0
Rohil Patel