如何在仅使用EPPlus应用于部分单元格值的单元格中添加格式?

时间:2016-09-29 10:39:19

标签: epplus

我知道如何格式化EPPlus中的单元格值,但仅限于格式适用于整个值。如何添加仅适用于单元格值 part 的格式?

例如......

enter image description here

1 个答案:

答案 0 :(得分:1)

使用RichText集合构建它:

using (var pck = new ExcelPackage())
{
    var wb = pck.Workbook;
    var ws = wb.Worksheets.First();

    var cell = ws.Cells["B2"];
    cell.RichText.Add("This is some ");
    cell.RichText.Add("formatting");
    cell.RichText.Add(" withing a value");

    cell.RichText[1].Color = Color.Red;
    cell.RichText[1].Size = 14;

    pck.Save();
}