14

在我设置一列的 WrapText=true 后,我想看看行的新高度是多少(即文本是否换行,多少行)。似乎没有更新行的 Height 属性。

        ExcelPackage pkg = new ExcelPackage();
        ExcelWorksheet sheet = pkg.Workbook.Worksheets.Add("Test");

        // height is 15.0
        double heightBefore = sheet.Row(1).Height;


        sheet.Cells[1, 1].Value = "Now is the time for all good men to come to the aid of their country";

        ExcelColumn col = sheet.Column(1);

        // this will resize the width to 60
        col.AutoFit();

        if (col.Width > 50)
        {
            col.Width = 50;

            // this is just a style property, and doesn't actually execute any recalculations
            col.Style.WrapText = true;
        }

        // so this is still 15.0.  How do I get it to compute what the size will be?
        double heightAfter = sheet.Row(1).Height;

        // open the xls, and the height is 30.0
        pkg.SaveAs(new System.IO.FileInfo("text.xlsx"));

事实上,对 Height 属性(或基础字段 _height)的搜索表明它仅由属性设置器设置,并且似乎从未基于其他任何内容(如行中的内容)进行设置。

关于如何获得刷新高度的任何想法?

谢谢

4

1 回答 1

8

我注意到 EPPlus 的一般模式是它使用最少的必要信息生成文档框架。然后,当您打开文件时,Excel 会填写剩余的 XML 结构,这就是为什么您在打开 EPPlus 生成的文档后总是必须保存文件的原因。

对于您的问题,我假设 Excel 在您打开 Excel 文件后会更新行高,因此 EPPlus 不会有更新的行高信息。我不确定图书馆不支持这个,但像你一样,我无法找到获取更新值的方法。

但是,一种解决方法可能是仅计算该值,因为您知道文本长度和列宽:

ExcelPackage pkg = new ExcelPackage();
ExcelWorksheet sheet = pkg.Workbook.Worksheets.Add("Test");

// height is 15.0
double heightBefore = sheet.Row(1).Height;

var someText = "Now is the time for all good men to come to the aid of their country. Typewriters were once ground-breaking machines.";
sheet.Cells[1, 1].Value = someText;

ExcelColumn col = sheet.Column(1);
ExcelRow row = sheet.Row(1);

// this will resize the width to 60
col.AutoFit();

if (col.Width > 50)
{
    col.Width = 50;

    // this is just a style property, and doesn't actually execute any recalculations
    col.Style.WrapText = true;
}

// calculate the approximate row height and set the value;
var lineCount = GetLineCount(someText, (int)col.Width);
row.Height = heightBefore * lineCount;

// open the xls, and the height is 45.0
pkg.SaveAs(new System.IO.FileInfo("text.xlsx"));

下面是计算行数的方法:

private int GetLineCount(String text, int columnWidth)
{
    var lineCount = 1;
    var textPosition = 0;

    while (textPosition <= text.Length)
    {
        textPosition = Math.Min(textPosition + columnWidth, text.Length);
        if (textPosition == text.Length)
            break;

        if (text[textPosition - 1] == ' ' || text[textPosition] == ' ')
        {
            lineCount++;
            textPosition++;
        }
        else
        {
            textPosition = text.LastIndexOf(' ', textPosition) + 1;

            var nextSpaceIndex = text.IndexOf(' ', textPosition);
            if (nextSpaceIndex - textPosition >= columnWidth)
            {
                lineCount += (nextSpaceIndex - textPosition) / columnWidth;
                textPosition = textPosition + columnWidth;
            }
            else
                lineCount++;
        }
    }

    return lineCount;
}

要记住的一件事是,Excel 的最大行高为 409.5,因此您需要确保列宽不会太窄以至于达到此限制。

另外,我注意到的另一件事是,您使用 EPPlus 手动设置的列宽实际上并未将列设置为预期值。例如,如果您将列宽设置为 50,您会注意到实际的列宽设置为 49.29,因此您可能还需要将其考虑在内。

于 2014-10-08T21:52:55.327 回答